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
What is c value paradox explain?
What is a void * in c?
What is sizeof array in c?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Explain what happens if you free a pointer twice?
What are dangling pointers in c?
What is "Duff's Device"?
Where in memory are my variables stored?
Differentiate between full, complete & perfect binary trees.
What is the purpose of realloc()?
Is it fine to write void main () or main () in c?
What is string in c language?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is ctrl c called?
What is the difference between array and linked list in c?