Unsigned char c;
for ( c=0;c!=256;c++2)
printf("%d",c);
No. of times the loop is executed ?
Answer Posted / manishsoni
The program is as:
------------------------------------------------------------
#include<stdio.h>
#include<conio.h>
int main()
{
unsigned char c;
for(c=0;c!=256;c++2)
{
printf("%d",c);
printf("\n");
}
getch();
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are header files in c?
What is the sizeof () operator?
Where are the auto variables stored?
How can I recover the file name given an open stream or file descriptor?
Explain the difference between the local variable and global variable in c?
Can true be a variable name in c?
Is it possible to have a function as a parameter in another function?
What are c identifiers?
How does selection sort work in c?
What does %c mean in c?
Define recursion in c.
If fflush wont work, what can I use to flush input?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What are predefined functions in c?
Explain modulus operator.