Answer Posted / ketan deshmukh
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
for (i=0;i<255;i++)
printf("ASCII for %d is %c\n",i,i);
getch();
}
| Is This Answer Correct ? | 8 Yes | 7 No |
Post New Answer View All Answers
How can I read a binary data file properly?
What are identifiers in c?
Tell me what is the purpose of 'register' keyword in c language?
write an algorithm to display a square matrix.
What is the benefit of using const for declaring constants?
What are the different types of endless loops?
What is binary tree in c?
Explain about C function prototype?
Is null always defined as 0(zero)?
What are the disadvantages of external storage class?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is meant by type specifiers?
What type is sizeof?
Explain the difference between the local variable and global variable in c?
Write program to remove duplicate in an array?