480 views
0 votes
0 votes

What will be output ?

A. Abnormal Termination.

B. Infinite loop

C. Output wil be 65536

D. None

Ans. D

Please log in or register to answer this question.

Related questions

2 votes
2 votes
2 answers
1
Parshu gate asked Nov 12, 2017
517 views
int i = 0 ;main( ){printf ( "\nmain's i = %d", i ) ;i++ ;val( ) ;printf ( "\nmain's i = %d", i ) ;val( ) ;}val( ){i = 100 ;printf ( "\nval's i = %d", i ) ;i++ ;}
2 votes
2 votes
2 answers
3
atulcse asked Jan 15, 2022
688 views
Consider the following programint find (int n) { int a = 1; for (i = 1; i < = n; i ++) for (j = 1; j < = i; j++) for (k = 1; k <= j, k++) a = a + 1; ...