main()
{
int a;
a=++100;
printf("%d",a);
getch();
}
Answer Posted / khurshid alam
Sorry Error first define a=0; or any value
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is structure of c program?
What is the purpose of 'register' keyword?
What is a sequential access file?
Which one would you prefer - a macro or a function?
How can I make it pause before closing the program output window?
What does the error message "DGROUP exceeds 64K" mean?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
In c language can we compile a program without main() function?
What are bitwise shift operators in c programming?
What is the difference between c and python?
When should the register modifier be used? Does it really help?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is abstract data structure in c?
Differentiate between full, complete & perfect binary trees.
What is wrong in this statement?