695 views
0 votes
0 votes
void abc()

{

auto int a;

static int s;

a=s++;

printf("%d%d",a,s);

if(a<=2)

abc();

printf("%d%d",a,s);

}

void main()

{

abc();

abc();

}

how many times printf will execute??

1 Answer

Related questions

3 votes
3 votes
3 answers
1
Laxman Ghanchi asked May 19, 2023
1,111 views
#include<stdio.h void print(int n) { printf("Hello "); if(n++ == 0) return ; print(n); n++; } int main() { void print(); print(-4); }How many times printf execute?? And H...
0 votes
0 votes
1 answer
2
Laxman Ghanchi asked May 19, 2023
656 views
#include<stdio.h>void print(int n){ printf("Hello "); if(n++ == 0) return ; print(n); n++;}int main(){ void print(); print(-4);}
1 votes
1 votes
0 answers
4