What is the output of the program given below

#include<stdio.h>
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
}

Answers were Sorted based on User's Feedback



What is the output of the program given below #include<stdio.h> main() { ..

Answer / vennila

*
**
***
****

Is This Answer Correct ?    0 Yes 0 No

What is the output of the program given below #include<stdio.h> main() { ..

Answer / gautam

0 to 127

Is This Answer Correct ?    5 Yes 6 No

What is the output of the program given below #include<stdio.h> main() { ..

Answer / mohmedali

0

Is This Answer Correct ?    4 Yes 6 No

What is the output of the program given below #include<stdio.h> main() { ..

Answer / rajendra.p (honeywell)

-128 is correct answer

Is This Answer Correct ?    2 Yes 4 No

What is the output of the program given below #include<stdio.h> main() { ..

Answer / sakthi

the function should not return any value.
or
-113

Is This Answer Correct ?    1 Yes 3 No

What is the output of the program given below #include<stdio.h> main() { ..

Answer / tasneemuddin

It will print no from 0 to 32767.
Like :
0
1
2
3
.
.
.
.
32767

Is This Answer Correct ?    3 Yes 6 No

What is the output of the program given below #include<stdio.h> main() { ..

Answer / mohmedali

garbage values

Is This Answer Correct ?    1 Yes 7 No

What is the output of the program given below #include<stdio.h> main() { ..

Answer / deepanjali

infinte loop

Is This Answer Correct ?    4 Yes 10 No

What is the output of the program given below #include<stdio.h> main() { ..

Answer / mohmedali

1

Is This Answer Correct ?    1 Yes 8 No

What is the output of the program given below #include<stdio.h> main() { ..

Answer / ananth

The loop never gets terminated as it runs infinite. So the
printf statement will not trigger & no o/p is produced.

Is This Answer Correct ?    11 Yes 19 No

Post New Answer

More C Interview Questions

What is atoi and atof in c?

0 Answers  


What are the advantages of using linked list for tree construction?

0 Answers  


code for selection sort?

1 Answers  


totally how much header files r in c language

8 Answers   TCS,


c program to subtract between two numbers without using '-' sign and subtract function.

1 Answers  






What is Conio.h ?

2 Answers   TCS,


How many bytes is a struct in c?

0 Answers  


Why we use void main in c?

0 Answers  


What is the most efficient way to count the number of bits which are set in a value?

4 Answers  


Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.

0 Answers  


What is build process in c?

0 Answers  


What is page thrashing?

0 Answers  


Categories