Unsigned char c;
for ( c=0;c!=256;c++2)
printf("%d",c);
No. of times the loop is executed ?
Answer Posted / manish soni
IT SHOW ACTUAL O/P.
main()
{
int c;
int i=1;
for ( c=0;c!=256;c+=2)
{
printf("%d=%d\n",i,c);
i++;
}
getch();
}
MANISH SONI
[GYAN CORPORATION,CHANDIGARH]
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Write a program to reverse a linked list in c.
What does != Mean in c?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What are directives in c?
Why c is procedure oriented?
Why is python slower than c?
Is c# a good language?
Explain indirection?
Why is c so important?
How to set file pointer to beginning c?
What will be your course of action for a push operation?
What is the maximum length of an identifier?
Define the scope of static variables.
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Why static is used in c?