main()
{
int a;
a=++100;
printf("%d",a);
getch();
}
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / khurshid alam
Sorry Error first define a=0; or any value
| Is This Answer Correct ? | 0 Yes | 0 No |
what is a function prototype?
What is difference between function overloading and operator overloading?
in which language c language is written?
what are the 10 different models of writing an addition program in C language?
Explain how can I make sure that my program is the only one accessing a file?
what is dangling pointer?
What is uint8 in c?
in malloc and calloc which one is fast and why?
What is the difference between GETS();AND SCANF();
What is the main difference between calloc () and malloc ()?
What is a stream in c programming?
Can I initialize unions?