main()
{
char x;
while(x=0;x<=255;x++)
printf("\nAscii value %d Charater %c",x,x);
}
Answer Posted / abdulhamid
21
| Is This Answer Correct ? | 3 Yes | 16 No |
Post New Answer View All Answers
What is main function in c?
about c language
What is array within structure?
What is .obj file in c?
What are the rules for identifiers in c?
Tell me when would you use a pointer to a function?
What is else if ladder?
How does struct work in c?
What are enumerated types?
What is the heap?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
How many types of errors are there in c language? Explain
What are the different properties of variable number of arguments?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
Why c language is called c?