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 |
Explain how can you avoid including a header more than once?
Between macros and functions,which is better to use and why?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What is return type in c?
Tell me what are bitwise shift operators?
pascal triangle program
write a c program to find biggest of 3 number without relational operator?
how to do in place reversal of a linked list(singly or doubly)?
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
write the program to find multiplication of 2-D matrix??????????
What are actual arguments?
What is structure in c language?