Can a pointer be null?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use pointer to pointer in c?
write a 'c' program to sum the number of integer values
What is Heap?
Why is this loop always executing once?
What is uint8 in c?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
7 Answers Cadence, JNTU, Zen Technologies,
What is static identifier?
how many argument we can pas in in a function
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1