What is c language in simple words?
No Answer is Posted For this Question
Be the First to Post Answer
Can we use visual studio for c?
difference between the array and linked list general difference related to memory
What is Conio.h ?
What is a void * in c?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
What is function definition in c?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
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
Wt are the Buses in C Language
Explain what is the benefit of using #define to declare a constant?
Does sprintf put null character?
How can I trap or ignore keyboard interrupts like control-c?