What is the difference between volatile and const volatile?
No Answer is Posted For this Question
Be the First to Post Answer
What are the disadvantages of c language?
What are the advantages and disadvantages of pointers?
What is double pointer?
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
what is pointer?
13 Answers HCL, TCS,
is it possible to change the default calling convention in c ?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
Is there a way to jump out of a function or functions?
What is %s and %d in c?
What is the difference between void main() and void main (void) give example programme?
In c programming language, how many parameters can be passed to a function ?
What is static and volatile in c?