What is 2 d array in c?
What is the benefit of using an enum rather than a #define constant?
What is main function in c?
Explain about block scope in c?
c pgm count no of lines , blanks, tabs in a para(File concept)
write a program for the normal snake games find in most of the mobiles.
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
When should a type cast be used?
Does c have function or method?
What is the difference between text and binary modes?
Differentiate call by value and call by reference?
What are c identifiers?
What is the difference between class and object in c?