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
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What are 'near' and 'far' pointers?
Explain what is the most efficient way to store flag values?
What is difference between union All statement and Union?
How can I remove the trailing spaces from a string?
How do we print only part of a string in c?
what are bit fields in c?
Describe dynamic data structure in c programming language?
What is the difference between Printf(..) and sprint(...) ?
Explain the difference between call by value and call by reference in c language?
How are variables declared in c?
What are the functions to open and close the file in c language?
Can we access the array using a pointer in c language?
What is the difference between malloc calloc and realloc in c?
What are structure types in C?