closed by
241 views
0 votes
0 votes
closed with the note: Duplicate to : https://gateoverflow.in/219627/ace-test-series-question

 

closed by

Related questions

0 votes
0 votes
3 answers
1
ramakrushna asked Dec 23, 2021
744 views
What should be the ans. Isn’t the Function initialization should be outside main function? They are given inside main. If declaration would be outside main then ans sho...
1 votes
1 votes
0 answers
2
srestha asked Mar 6, 2019
796 views
void find(int x){ static int i=10,y=0; y=y+i; for(i;i>0;i=i-10){ if(x!=0) find(x-1); else{ printf("%d",y); } } }What will be output printed for find(4)?
0 votes
0 votes
1 answer
3
srestha asked Mar 1, 2019
551 views
void print(int i){ static int x=4; if(i!=0){ print( x); } printf("%d",x); }What will be output printed for print(10)?Will it print value as call by value or call by refer...
1 votes
1 votes
0 answers
4
Mahbub Alam asked Nov 15, 2018
582 views
what is the result of comparing signed with unsigned number??#include <stdio.h>int main(){ unsigned int a = 5;if(a -1)printf("5 is -1\n"); return 0; }