Give the rules for variable declaration?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
What is the concatenation operator?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
What are structure members?
a C prog to swap 2 no.s without using variables just an array?
write a c program to add two integer numbers without using arithmetic operator +
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
Explain the use of 'auto' keyword
write a “Hello World” program in “c” without using a semicolon?
Can we increase size of array in c?
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
what is a non volatile key word in c language?