Learn C ProgrammingLearn ProgrammingPrograms On Decision Control StructuresResources 023. Write a program to accept roll number ,and marks for three subjects, print total marks and average, also print grade by considering following conditions Avg>=60 Grade A Avg=50 Grade B Avg=40 Grade C Grade F. #include<stdio.h> #include<conio.h> main() {…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Decision Control StructuresResources 022. Write a program to calculate roots of a quadratic equations in C language x=b^2-4ac if x=0 -> only one root , if x>0 -> roots are distinct (–b+x)/2a…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Decision Control StructuresResources 021. Write a program to accept three numbers from user and print them in ascending and descending order in C language #include<stdio.h> void main() { int a,b,c; printf("Enter numbers..."); scanf("%d%d%d",&a,&b,&c); if((a>=b)&&(a>=c)) { if(b>=c) { printf("\n Descending…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Decision Control StructuresResources 020. Write a program to accept two numbers from user and compare them in C language #include<stdio.h> #include<conio.h> main() { int a,b; clrscr(); printf("Enter numbers..."); scanf("%d%d",&a,&b); if(a>b) printf("a is greater than…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Decision Control StructuresResources 019. Write a program to accept a number from user and print if it is multiple of 7 in C language #include<stdio.h> #include<conio.h> main() { int n; clrscr(); printf("Enter number..."); scanf("%d",&n); if(n%7==0) printf("Number is multiple of…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Decision Control StructuresResources 018. Write a program to accept a number from user and print if it is divisible by 5 in C language #include<stdio.h> #include<conio.h> main() { int n; clrscr(); printf("Enter number..."); scanf("%d",&n); if(n%5==0) printf("Number is divisible by…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Decision Control StructuresResources 017. Write a program to accept a number from user and print if it is even or odd in C language #include<stdio.h> #include<conio.h> main() { int n; clrscr(); printf("Enter number..."); scanf("%d",&n); if(n%2==0) printf("Number is even..."); else…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Decision Control StructuresResources 016. Write a program to accept a number and check if it is >10, <10 or =10 in C language #include<stdio.h> #include<conio.h> main() { int n; clrscr(); printf("enter number..."); scanf("%d",&n); if(n>10) printf("Number is greater than…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Decision Control StructuresResources 015. Write a program to accept a number and print if the number is Positive/Negative in C language #include<stdio.h> #include<conio.h> main() { int n; clrscr(); printf("Enter number.."); scanf("%d",&n); if(n>0) printf("Given number is positive");…Prashant ChaudhariSeptember 18, 2012
Learn C ProgrammingLearn ProgrammingPrograms On Decision Control StructuresResources 014. Write a program to accept two number and print largest among them in C language #include<stdio.h> #include<conio.h> main() { int a,b; clrscr(); printf("Enter numbers : "); scanf("%d%d",&a,&b); if(a>b) printf("Largest value…Prashant ChaudhariSeptember 18, 2012