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 the difference between local variable and global variable in c?
Why c is called top down?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is a double c?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What do you mean by dynamic memory allocation in c?
Explain how do you list files in a directory?
Why string is used in c?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
What is #define in c?
What are two dimensional arrays alternatively called as?
How can you find the exact size of a data type in c?
How can you increase the size of a statically allocated array?
I heard that you have to include stdio.h before calling printf. Why?