"%u" unsigned integer print the
a) address of variable
b) value of variable
c) name of a variable
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
What is indirection in c?
an algorithem for the implementation of circular doubly linked list
What is floating point constants?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
What are the advantages and disadvantages of a heap?
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
what is a void pointer?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Explain what is the purpose of "extern" keyword in a function declaration?
What is the difference between array_name and &array_name?
What are local variables c?