What is const and volatile in c?


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

Post New Answer

More C Interview Questions

main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?

9 Answers   Ramco,


What are the types of functions in c?

0 Answers  


What is use of bit field?

0 Answers  


A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }

2 Answers   Wipro,


How can I access memory located at a certain address?

3 Answers   Verizon,






what is default constructor?

2 Answers   HCL,


What happens if you free a pointer twice?

0 Answers  


#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }

7 Answers   Infosys,


What are bit fields? What is their use?

2 Answers   Adobe,


Which driver is a pure java driver

0 Answers   Vertex,


a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above

0 Answers  


how to add our own function in c library please give details.?

1 Answers   TCS,


Categories