When should the volatile modifier be used?
No Answer is Posted For this Question
Be the First to Post Answer
If input is 123 then how to print 100 and 20 and 3 seperately?
Why void main is used in c?
What is time null in c?
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
What is %d called in c?
What are control structures? What are the different types?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
How can I make it pause before closing the program output window?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
What is the difference between the expression “++a” and “a++”?
What are the 32 keywords in c?
Why can’t constant values be used to define an array’s initial size?