InterviewSolution
Saved Bookmarks
| 1. |
What will be the output, if the following statement is executed : int x = 90; char c = (x , = 90) ? ‘z’ : ‘10’ ; |
|
Answer» Output c = ’z’ |
|