What is static volatile in c?


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

Post New Answer

More C Interview Questions

Can i use “int” data type to store the value 32768? Why?

0 Answers  


main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


What functions are used in dynamic memory allocation in c?

0 Answers  


What is the best way to store flag values in a program?

0 Answers  


What are the applications of c language?

0 Answers  






#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks

9 Answers   Excel,


#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39

1 Answers   GameLoft,


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

1 Answers  


In which header file is the null macro defined?

0 Answers  


what is dangling pointer?

1 Answers   LG Soft,


Which one would you prefer - a macro or a function?

0 Answers  


What is structure and union in c?

0 Answers  


Categories