What is the output of the program given below
#include<stdio.h>
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
}
Answer Posted / sakthi
the function should not return any value.
or
-113
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Where are the auto variables stored?
What is call by reference in functions?
What are the back slash character constants or escape sequence charactersavailable in c?
What do you understand by friend-functions? How are they used?
List the different types of c tokens?
Difference between linking and loading?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Discuss the function of conditional operator, size of operator and comma operator with examples.
How are Structure passing and returning implemented by the complier?
What is a floating point in c?
What is the scope of local variable in c?
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
main() { printf("hello"); fork(); }
What is malloc return c?
write a c program for swapping two strings using pointer