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
What is a file descriptor in c?
What is a keyword?
Explain the difference between malloc() and calloc() in c?
Explain the difference between strcpy() and memcpy() function?
Explain what are compound statements?
How can I get random integers in a certain range?
What is double pointer?
What are pointers? What are different types of pointers?
Dont ansi function prototypes render lint obsolete?
What is meant by recursion?
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 indirection? How many levels of pointers can you have?
What is bss in c?
When we use void main and int main?
Define the scope of static variables.