what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / p.thriveni
it will giv the warning as 'a' is assigned a avalue that
is never be used.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do I read the arrow keys? What about function keys?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What does *p++ do? What does it point to?
When is a “switch” statement preferable over an “if” statement?
What is meant by gets in c?
What is malloc and calloc?
How will you divide two numbers in a MACRO?
Why is it usually a bad idea to use gets()? Suggest a workaround.
Describe explain how arrays can be passed to a user defined function
Are pointers integer?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
How the c program is executed?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
List some basic data types in c?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2