main()
{
int a;
a=++100;
printf("%d",a);
getch();
}
Answer Posted / baji shareef
error. Increment procedure is possible only for the variable. ++100 means 100=100+1 i.e., you are changing the value of constant value which is impossible.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the function of this pointer?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is clrscr in c?
What are the different types of errors?
pierrot's divisor program using c or c++ code
how we can make 3d venturing graphics on outer interface
Explain argument and its types.
Why is c called c not d or e?
Is exit(status) truly equivalent to returning the same status from main?
What is data structure in c language?
Explain what is the difference between #include and #include 'file' ?
What does %p mean c?
What is keyword with example?
What is variable in c example?
List the difference between a 'copy constructor' and a 'assignment operator' in C?