main()
{
int a;
a=++100;
printf("%d",a);
getch();
}
Answer Posted / shar
Error, LValue required
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What do you mean by keywords in c?
Calculate 1*2*3*____*n using recursive function??
What is meant by realloc()?
What is the use of getchar() function?
what is the syallabus of computer science students in group- 1?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Why does notstrcat(string, "!");Work?
When c language was developed?
Can we change the value of static variable in c?
How can you increase the size of a dynamically allocated array?
Why calloc is better than malloc?
What is static and volatile in c?
Can you please explain the difference between strcpy() and memcpy() function?
Explain the advantages and disadvantages of macros.