recategorized by
974 views
0 votes
0 votes

Given answer: 1990
Please explain

recategorized by

1 Answer

Related questions

1 votes
1 votes
2 answers
1
Umang Raman asked Oct 7, 2015
1,182 views
int main (){ int a=5,b=3; printf("%d", a+++++b); // 5 +'s }Please Explain.
1 votes
1 votes
3 answers
2
ajit asked Oct 1, 2015
1,649 views
what is the output of the following c code?#include<stdio.h void main() { int index; for(index=1;index<=5;index++) { printf("%d",index); if(index==3) continue; } }a)1245b...
2 votes
2 votes
5 answers
3
debanjan sarkar asked Sep 3, 2015
6,587 views
void myfunc(int X){ if(X 0) myfunc( X ); printf("%d", X); } int main(){ myfunc(5); return 0; }0,0,1,2,3,44,3,2,1,04,3,2,1,0,00,1,2,3,4
0 votes
0 votes
1 answer
4
debanjan sarkar asked Aug 21, 2015
1,130 views
Find the output of the following c code- main() { char *ptr="gatebuddy"; *(ptr)++; ptr++; printf("%s\n",ptr); }