void main()
{
//char ch;
unsigned char ch;
clrscr();
for(ch =0;ch<= 127; ch++)
printf(" %c= %d \t ", ch, ch);
}
output?
Answer Posted / guest
null
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
List some basic data types in c?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is the difference between array and structure in c?
What is a floating point in c?
Can we declare a function inside a function in c?
What are identifiers c?
Is using exit() the same as using return?
Where is volatile variable stored?
Why is c not oop?
When should you not use a type cast?
What is string in c language?
Disadvantages of C language.
How can I get back to the interactive keyboard if stdin is redirected?
Why do we use int main instead of void main in c?
What is the main difference between calloc () and malloc ()?