What is wrong with this declaration?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between far and near ?
Why is struct padding needed?
what is the difference b/w NULL and null?
What are header files in c programming?
What is scope and lifetime of a variable in c?
What are the types of data types and explain?
What is the difference between text and binary i/o?
What is ctrl c called?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
hat is a pointer?
what will be the output for the following main() { printf("hi" "hello"); }
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }