the output will be
#include<stdio.h>
int main ()
{
int i;
i = 9/2;
printf("%i",i);
return 0;
}
Answer Posted / manomit mitra
4
| Is This Answer Correct ? | 48 Yes | 8 No |
Post New Answer View All Answers
What is register variable in c language?
Explain how can I make sure that my program is the only one accessing a file?
What is cohesion in c?
Explain 'far' and 'near' pointers in c.
What is use of null pointer in c?
Which one would you prefer - a macro or a function?
Write a code to generate a series where the next element is the sum of last k terms.
What is structure and union in c?
Write a program with dynamically allocation of variable.
What is sorting in c plus plus?
Is flag a keyword in c?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
How can you avoid including a header more than once?
Why is c faster?
What is array in C