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
Tell me can the size of an array be declared at runtime?
Does c have circular shift operators?
Is there a way to jump out of a function or functions?
Why c is called a mid level programming language?
What is string in c language?
Where are some collections of useful code fragments and examples?
What is void main ()?
What are the rules for identifiers in c?
Who invented b language?
How can I dynamically allocate arrays?
Not all reserved words are written in lowercase. TRUE or FALSE?
Explain what is the most efficient way to store flag values?
how to construct a simulator keeping the logical boolean gates in c
What is printf () in c?
what is the height of tree if leaf node is at level 3. please explain