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
Explain the difference between call by value and call by reference in c language?
When do we get logical errors?
What is the difference between exit() and _exit() function?
How can you find the exact size of a data type in c?
List the different types of c tokens?
What is null in c?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Define Array of pointers.
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
What is pragma in c?
Write a program to use switch statement.
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
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.
write a c program to calculate sum of digits till it reduces to a single digit using recursion