what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / sree
output is garbage value
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is typedef example?
What is the difference between near, far and huge pointers?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
main() { printf("hello"); fork(); }
Can we assign string to char pointer?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Differentiate Source Codes from Object Codes
Does c have class?
How can I write a function that takes a format string and a variable number of arguments?
Explain the meaning of keyword 'extern' in a function declaration.
The statement, int(*x[]) () what does in indicate?
What is static memory allocation?
How will you delete a node in DLL?
What is a sequential access file?
Write a program to print fibonacci series without using recursion?