what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / bharath s
The answer is Garbage value...
The answer willbe lik -113...Depending upon the compailer
If we declare as..
static char ch;
Then Answer is 0.....
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
How do I copy files?
What is an endless loop?
What is the use of the function in c?
What does dm mean sexually?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What is a program?
Explain the properties of union. What is the size of a union variable
What are comments and how do you insert it in a C program?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Why doesnt that code work?
Write a program to print "hello world" without using a semicolon?
What is the use of linkage in c language?
What does != Mean in c?
program for reversing a selected line word by word when multiple lines are given without using strrev
What is a memory leak? How to avoid it?