What is a const pointer?
No Answer is Posted For this Question
Be the First to Post Answer
How can my program discover the complete pathname to the executable from which it was invoked?
How can I recover the file name given an open stream or file descriptor?
What is the difference between malloc() and realloc()?
What are the salient features of c languages?
how to generate sparse matrix in c
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
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
What is strcmp in c?
What is the purpose of the fflush() function in C?
What is dangling pointer in c?
Explain what are the different file extensions involved when programming in c?
What is keyword with example?