What is volatile keyword in c?


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

Post New Answer

More C Interview Questions

write a progam to display the factors of a given number and disply how many prime numbers are there?

2 Answers  


what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175

5 Answers   Wipro,


User define function contain thier own address or not.

2 Answers  


Why static is used in c?

0 Answers  


about c language

0 Answers  






What is the difference between ‘g’ and “g” in C?

1 Answers  


write a program for 7*8 = 56 ? without using * multiply operator ? output = 56

6 Answers   Xavient,


write a program in c language for the multiplication of two matrices using pointers?

8 Answers   Ignou,


1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.

0 Answers  


How to explain the final year project as a fresher please answer with sample project

0 Answers  


Define recursion in c.

0 Answers  


#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?

4 Answers   IIIT,


Categories