main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / rukmanee
i++=5
i--=5
i=5
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
How can you increase the size of a dynamically allocated array?
Was 2000 a leap year?
How are Structure passing and returning implemented by the complier?
Write a program to print “hello world” without using semicolon?
What do you mean by Recursion Function?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Explain the difference between null pointer and void pointer.
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is a method in c?
Write a program of prime number using recursion.
What is a buffer in c?
Explain about the functions strcat() and strcmp()?
How to define structures? ·
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above