Can a local variable be volatile in c?


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

Post New Answer

More C Interview Questions

What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


Find MAXIMUM of three distinct integers using a single C statement

0 Answers  


write a c programme for add of two numbers with out use of arthematic operators

2 Answers  


where does malloc() function get the memory?

1 Answers  


Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

2 Answers  






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

11 Answers   CISOC, CitiGroup, College School Exams Tests,


Write a program to find the smallest and largest element in a given array in c language

11 Answers   Microsoft, Vembu,


Why do we use int main instead of void main in c?

0 Answers  


Write a program to know whether the input number is an armstrong number.

0 Answers   Wipro,


What is the full form of getch?

0 Answers  


What is formal argument?

0 Answers  


What is the method to save data in stack data structure type?

0 Answers  


Categories