main()
{
char x;
while(x=0;x<=255;x++)
printf("\nAscii value %d Charater %c",x,x);
}
Answer Posted / ashutosh tiwari
syntax error: while will never have initialization or
increment. it only have condition.
| Is This Answer Correct ? | 22 Yes | 1 No |
Post New Answer View All Answers
Explain what is the difference between far and near ?
Is there any possibility to create customized header file with c programming language?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
How many keywords are there in c?
Is javascript written in c?
Write a program of prime number using recursion.
What is scope rule of function in c?
develop algorithms to add polynomials (i) in one variable
Why do we use c for the speed of light?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
how to find anagram without using string functions using only loops in c programming
Why is %d used in c?
Explain the advantages of using macro in c language?
What is array in c with example?
How do I read the arrow keys? What about function keys?