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
Why double pointer is used in c?
What functions are used for dynamic memory allocation in c language?
Is there a way to compare two structure variables?
Is exit(status) truly equivalent to returning the same status from main?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
What are enumerated types?
What is the -> in c?
What are pointers in C? Give an example where to illustrate their significance.
What is %g in c?
What is the size of enum in bytes?
What is string length in c?
What are types of preprocessor in c?
What is the difference between text and binary i/o?
explain what are actual arguments?