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
Explain the difference between structs and unions in c?
How can I use a preprocessorif expression to ?
Explain what are header files and explain what are its uses in c programming?
how logic is used
Explain about the functions strcat() and strcmp()?
Difference between MAC vs. IP Addressing
Can you mix old-style and new-style function syntax?
What is .obj file in c?
What are the different types of pointers used in c language?
What is the difference between c &c++?
How can I send mail from within a c program?
What are qualifiers in c?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What is hashing in c language?