Is register a keyword in c?


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

Post New Answer

More C Interview Questions

What is new line escape sequence?

0 Answers  


Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

1 Answers  


How can I automatically locate a programs configuration files in the same directory as the executable?

0 Answers  


Should I learn data structures in c or python?

0 Answers  


When should you use a type cast?

0 Answers  






Write a program for print infinite numbers

3 Answers   Wipro,


what is a non volatile key word in c language?

1 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


provide an example of the Group by clause, when would you use this clause

0 Answers  


main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }

6 Answers  


What is meant by gets in c?

0 Answers  


Can main () be called recursively?

0 Answers  


Categories