what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / manju
The answer is garbage value because ch is not initialised
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
how to create duplicate link list using C???
How to delete a node from linked list w/o using collectons?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is identifier in c?
What does %p mean c?
How can you determine the maximum value that a numeric variable can hold?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is the condition that is applied with ?: Operator?
Why c is a mother language?
Write a program to generate random numbers in c?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
How does sizeof know array size?
What are pragmas and what are they good for?
How can I write a function that takes a format string and a variable number of arguments?