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
What is volatile, register definition in C
Can a function argument have default value?
What are run-time errors?
What is getch() function?
What is the difference between local variable and global variable in c?
Is c language still used?
Explain what happens if you free a pointer twice?
where are auto variables stored? What are the characteristics of an auto variable?
What are the rules for identifiers in c?
What is the purpose of void pointer?
Why malloc is faster than calloc?
When should structures be passed by values or by references?
What is a macro, and explain how do you use it?
What is hash table in c?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?