what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / viji
it will give some garbage value.........
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How many parameters should a function have?
What are the 4 types of functions?
What is the difference between a string and an array?
What is the use of parallelize in spark?
How can I trap or ignore keyboard interrupts like control-c?
#include
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What does the message "automatic aggregate intialization is an ansi feature" mean?
Calculate 1*2*3*____*n using recursive function??
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
How can I dynamically allocate arrays?
What does typedef struct mean?
What is difference between main and void main?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How many types of arrays are there in c?