the output will be
#include<stdio.h>
int main ()
{
int i;
i = 9/2;
printf("%i",i);
return 0;
}
Answer Posted / sumesh
the output of this program will be 4.here i is an integer type not float.
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
Why do we use int main instead of void main in c?
What are the complete rules for header file searching?
What is extern variable in c with example?
What are structural members?
What is register variable in c language?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What is malloc() function?
What is the use of getchar() function?
Explain how do you generate random numbers in c?
List some of the static data structures in C?
What's the best way of making my program efficient?
Do you know the difference between exit() and _exit() function in c?
What is the significance of an algorithm to C programming?
What is a stream in c programming?
What was noalias and what ever happened to it?