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 / stuti

1

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is there any data type in c with variable size?

628


What is the meaning of typedef struct in c?

591


What is getch c?

847


Who invented b language?

911


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

1730






Tell us the use of fflush() function in c language?

634


What is a function simple definition?

610


What is an identifier?

618


Does * p ++ increment p or what it points to?

610


What is #line used for?

576


What is multidimensional arrays

624


Explain how can type-insensitive macros be created?

567


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

637


What are the back slash character constants or escape sequence charactersavailable in c?

680


List the difference between a While & Do While loops?

629