Can we declare variables anywhere in c?
No Answer is Posted For this Question
Be the First to Post Answer
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
hi , please send me NIC written test papers to sbabavalli@gmail.com
Is void a keyword in c?
What is information technology.
what does keyword ‘extern’ mean in a function declaration?
What is class and object in c?
Why & is used in scanf in c?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Which is better pointer or array?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????