1.

Write the output of the following code​

Answer» ONG>Answer:

#INCLUDE

INT main()

{

int val = 1;

do{

val++;

++val;

}while(val++>;25);

printf(“%d\n”,val);

RETURN 0;

}

Explanation:



Discussion

No Comment Found