What is the use of typedef in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages and disadvantages of pointers?
What is actual argument?
How do I round numbers?
What is C language Terminator?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
What is a ternary operator in c?
can we have joblib in a proc ?
what is difference b/w extern & volatile variable??
Explain what is operator promotion?
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
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
How many loops are there in c?