what is difference b/w extern & volatile variable??
Answer Posted / mani
extern variables are stored in CPU ,volatile variables are
temporary.
| Is This Answer Correct ? | 4 Yes | 10 No |
Post New Answer View All Answers
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Explain what is the difference between a free-standing and a hosted environment?
What is the easiest sorting method to use?
What is c method?
Explain what is the concatenation operator?
write a progrmm in c language take user interface generate table using for loop?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Explain the use of #pragma exit?
Explain what is the stack?
What do you know about the use of bit field?
Why static is used in c?
What is a pragma?
Difference between MAC vs. IP Addressing
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Explain what happens if you free a pointer twice?