what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / vikram
output will be any garbage value since ch is not assigned
any value
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what is the most efficient way to store flag values?
What is a char in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What are the usage of pointer in c?
Why is not a pointer null after calling free?
write a program to rearrange the array such way that all even elements should come first and next come odd
What is difference between static and global variable in c?
How can I dynamically allocate arrays?
Explain what is meant by 'bit masking'?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is the difference between c and python?
How can I write a function that takes a format string and a variable number of arguments?
Why is python slower than c?
What are the applications of c language?