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 are the benefits of organizational structure?
What is scope and lifetime of a variable in c?
What are header files and explain what are its uses in c programming?
How can you tell whether a program was compiled using c versus c++?
What should malloc() do?
How can you pass an array to a function by value?
How can I automatically locate a programs configuration files in the same directory as the executable?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
How do you use a 'Local Block'?
What is int main () in c?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Why we use int main and void main?
What are the application of c?
Can we access the array using a pointer in c language?
What is union in c?