void main()
{
//char ch;
unsigned char ch;

clrscr();
for(ch =0;ch<= 127; ch++)
printf(" %c= %d \t ", ch, ch);
}
output?

Answer Posted / honey

how???

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between call by value and call by reference in c language?

797


When do we get logical errors?

762


What is the difference between exit() and _exit() function?

721


How can you find the exact size of a data type in c?

740


List the different types of c tokens?

779






What is null in c?

711


Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays

2051


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

789


Define Array of pointers.

790


any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above

782


What is pragma in c?

790


Write a program to use switch statement.

825


write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?

1856


design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.

1670


write a c program to calculate sum of digits till it reduces to a single digit using recursion

2915