What are volatile variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What do you mean by c what are the main characteristics of c language?
What will be the outcome of the following conditional statement if the value of variable s is 10?
how to impliment 2 or more stacks in a single dimensional array ?
What is the difference between text files and binary files?
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
difference between loading and linking
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is the difference between malloc() and calloc() function in c language?
When should the register modifier be used? Does it really help?
Explain what is the benefit of using #define to declare a constant?
What does double pointer mean in c?