what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / kalpana.y
There will be no output
because,in printf statement the integer variable is
declared but 'ch' is assinged.it should be 'a' insted
of 'ch'.
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
What are the different types of pointers used in c language?
How can I insert or delete a line (or record) in the middle of a file?
explain what is fifo?
Write a program for Overriding.
Where we use clrscr in c?
Explain indirection?
Why is c called a structured programming language?
What functions are in conio h?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
How can I automatically locate a programs configuration files in the same directory as the executable?
What is character set?
Can we increase size of array in c?
explain how do you use macro?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is ctrl c called?