the output will be
#include<stdio.h>
int main ()
{
int i;
i = 9/2;
printf("%i",i);
return 0;
}
Answer Posted / nupur
it will return 0
| Is This Answer Correct ? | 23 Yes | 27 No |
Post New Answer View All Answers
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is the ANSI C Standard?
I have seen function declarations that look like this
How can I send mail from within a c program?
How can you invoke another program from within a C program?
How can I find the modification date of a file?
What is c standard library?
What is a buffer in c?
What are the scope of static variables?
Is boolean a datatype in c?
Should I learn data structures in c or python?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Explain the priority queues?
What is the main difference between calloc () and malloc ()?
What are extern variables in c?