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
why wipro wase
How will you divide two numbers in a MACRO?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
If I have a char * variable pointing to the name of a function ..
Describe the steps to insert data into a singly linked list.
Compare interpreters and compilers.
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is default value of global variable in c?
What is meant by preprocessor in c?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Why is c called a structured programming language?
develop algorithms to add polynomials (i) in one variable
In a byte, what is the maximum decimal number that you can accommodate?
When was c language developed?
What is ponter?