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 to swap two numbers without using a temporary variable?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What does %d do?
Explain how do you generate random numbers in c?
What do you mean by dynamic memory allocation in c?
What is const volatile variable in c?
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is array in C
Explain how can I avoid the abort, retry, fail messages?
what is recursion in C
What is static function in c?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Explain what is a static function?
Explain what are its uses in c programming?
Which control loop is recommended if you have to execute set of statements for fixed number of times?