What is the auto keyword good for?


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

Post New Answer

More C Interview Questions

How many levels of indirection in pointers can you have in a single declaration?

0 Answers   Agilent, ZS Associates,


In a header file whether functions are declared or defined?

0 Answers   TISL,


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

0 Answers  


When do we get logical errors?

0 Answers  


which do you prefer C or Pascal?

1 Answers  






What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?

5 Answers   CMC,


What is the difference between declaring a variable by constant keyword and #define ing that variable?

1 Answers  


FILE PROGRAMMING

0 Answers   Wipro,


How is pointer initialized in c?

0 Answers  


What is a good way to implement complex numbers in c?

0 Answers  


Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer

0 Answers   TCS,


Categories