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 THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?

0 Answers   HP,


Software Interview Questions

1 Answers   CAT,


Why does not c have an exponentiation operator?

0 Answers  


what are far pointers?

1 Answers  


Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001

2 Answers  






WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?

8 Answers   Carphone Warehouse, IBM, SAS,


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

0 Answers  


what is C?

9 Answers   Syntel,


how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help

5 Answers  


What is the meaning of 2d in c?

0 Answers  


4. main() { int c=- -2; printf("c=%d",c); }

0 Answers  


What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

0 Answers  


Categories