main()
{
int a;
a=++100;
printf("%d",a);
getch();
}
Answer Posted / vennila
error, a value should be initialised
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
what are bit fields in c?
Explain what is the concatenation operator?
What is strcmp in c?
What is wrong with this declaration?
What is variable in c example?
Why is not a pointer null after calling free?
Explain what is wrong in this statement?
How can you increase the size of a statically allocated array?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Explain main function in c?
find out largest elemant of diagonalmatrix
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is this infamous null pointer, anyway?
What does sizeof int return?
Why is it important to memset a variable, immediately after allocating memory to it ?