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 / rekha
It will print 0 to 127
| Is This Answer Correct ? | 6 Yes | 6 No |
Post New Answer View All Answers
What does static variable mean in c?
Are negative numbers true in c?
Explain how can a program be made to print the line number where an error occurs?
What is the use of ?
What is file in c language?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What are unions in c?
What is the significance of c program algorithms?
Write a program to use switch statement.
What is structure padding and packing in c?
What do you mean by a local block?
Are the outer parentheses in return statements really optional?
Can you please explain the difference between exit() and _exit() function?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Describe wild pointers in c?