What is a volatile keyword in c?


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

Post New Answer

More C Interview Questions

cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration

0 Answers  


struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā€œ%dā€,s.x); }

2 Answers   Vector,


c language interview questions & answer

0 Answers  


Explain a file operation in C with an example.

0 Answers   Amdocs,


What are local static variables? How can you use them?

0 Answers  






Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers

1 Answers  


Explain the concept and use of type void.

0 Answers  


What is the difference between printf and scanf in c?

0 Answers  


how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help

5 Answers  


What is character set?

0 Answers  


How can I convert a number to a string?

0 Answers  


main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }

2 Answers   CSC,


Categories