Advertisements
Advertisements
Question
Write the output of following code:
#include<stdio.h>
int main()
{
int val = 1;
do{
val++;
++val;
}while(val++>25);
printf(“%d\n”,val);
return 0;
}
Solution
Output: 4
APPEARS IN
RELATED QUESTIONS
Write a program to validate whether accepted string is palindrome or not.
Write a program to find transpose of matrix without making use of another matrix.
Define structure consisting of following elements
1. student roll_no
2. student name
3. student percentage
Write a program to read records of 5 students of and display same.
State True or False with reason.
while(0); is an infinite loop.
WAP to print the sum of following series.
1+22+33+………+nn
Write a program to perform matrix multiplication by passing input matrix to the function and printing resultant matrix.
Write a program to display following pattern:
1
232
34543
4567654
567898765
WAP to print all possible combination of 1,2,3 using nested loops.
Write a program for finding sum of series 1+2+3+4+…….upto n terms.
Explain continue and break statements with the help of suitable examples.