C
Latest Answer: c. free is answer. because all are allocate memory but free release the memory ...
Consider the following programmain(){int a[5]={1,3,6,7,0};int *b;b=&a[2];}the value of b[-1] isa.1b.3c.-6d. none
B
Consider the following program sigmentint n,sum=1;switch(n) {case 2:sum=sum+2;case 3:sum*=2;break;default:sum=0;} if n=2, what is the value of suma.0b.6c.3d.none
B
A
Latest Answer: the incorrect ans is if()then ie,option 3 bcos there is no then keyword in c language ...
B
Latest Answer: the format specifier for hexadecimal is %x. ...
Find the output of the following programmain(){int x=5, *p;p=&x;printf("%d",++*p);}a.5b.6c.0d.none
B
Consider the following C codemain(){int i=3,x;while(i>0){x=func(i);i--;}int func(int n){static sum=0;sum=sum+n;return(sum);}the final value of x isa.6b.8c.1d.3
A
View page << Previous 5 6 7 8 [9]

Go Top