retagged by
661 views
0 votes
0 votes

 

retagged by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
2 answers
2
Nitesh Choudhary asked Apr 21, 2017
1,325 views
#include<stdio.h>int main(){ int i=10; printf("address of i=%d value of i=%d",&i,i); &i=7200; printf("address of i=%d value of i=%d",&i,i); return 0;...
0 votes
0 votes
1 answer
3
Desert_Warrior asked May 16, 2016
2,312 views
#include<stdio.h int main() { int a = 5; int b = ++a * a++; printf("%d ",b); return 0; }(a) 25 (b) 30 (c) 36 (d) Undefined Behavior
0 votes
0 votes
2 answers
4
Desert_Warrior asked May 16, 2016
8,791 views
#include<stdio.h int main() { int a = 5; switch(a) { default: a = 4; case 6: a ; case 5: a = a+1; case 1: a = a-1; } printf("%d \n",a); return 0; }(a) 5 (b) 4 (c) 3 (d) N...