What is ponter?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between malloc() and calloc() function?
What is C language ?
in linking some of os executables are linking name some of them
What is indirect recursion? give an example?
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
Is there any data type in c with variable size?
What is a memory leak in structures? How can we rectify that?
Explain goto?
How can you return multiple values from a function?
What is variable declaration and definition in c?
main() { printf("hello%d",print("QUARK test?")); }
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