main()
{
char x;
while(x=0;x<=255;x++)
printf("\nAscii value %d Charater %c",x,x);
}
Answers were Sorted based on User's Feedback
Answer / ashutosh tiwari
syntax error: while will never have initialization or
increment. it only have condition.
| Is This Answer Correct ? | 22 Yes | 1 No |
What is the difference between c &c++?
Write code for finding depth of tree
what is the return type of printf
Why static variable is used in c?
What are the difference between a free-standing and a hosted environment?
Why cant I open a file by its explicit path?
How can I change their mode to binary?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What is the real difference between arrays and pointers?
27 Answers Hexaware, Logic Pro, TCS,
what is the difference between global variable & static variable declared out side all the function in the file.
What are pointers? What are stacks and queues?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }