what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answers were Sorted based on User's Feedback
Answer / ranjani
it will give a warning " that a is assigned a value that is
never used"......
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / a.dinesh kumar
error will be occur because a is not in use in output
statement
| Is This Answer Correct ? | 2 Yes | 6 No |
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
wht is the difference between KPO and BPO ?
2 Answers Accenture, BPO, HCK, HCL, Infosys,
how to write a prog in c to convert decimal number into binary by using recursen function,
Give basis knowledge of web designing ...
how the compiler treats any volatile variable?Explain with example.
Can you please explain the difference between syntax vs logical error?
What does %2f mean in c?
Did c have any year 2000 problems?
What are the salient features of c languages?
Explain what is wrong with this statement? Myname = ?robin?;
what is the maximum no. of bytes calloc can allocate
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor