Do you have any idea about the use of "auto" keyword?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

IS STRUCTURES CAN BE USED WITHIN AN ARRAY?

7 Answers   Caritor,


Is null always defined as 0(zero)?

0 Answers  


Can you apply link and association interchangeably?

0 Answers   InterGraph,


The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?

0 Answers  


Is int a keyword in c?

0 Answers  






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

4 Answers   Accenture,


What is the difference between void main() and void main (void) give example programme?

0 Answers  


what different between c and c++

1 Answers  


write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4

1 Answers  


can i know the source code for reversing a linked list with out using a temporary variable?

6 Answers   Honeywell,


main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason

6 Answers   CSC,


Can we access array using pointer in c language?

0 Answers  


Categories