#include<stdio.h> void main() { int choice; printf(“choose a number from 1 to 7:”); scanf(“%d”,&choice); switch(choice) { case 1: printf(“sunday”); break; …
write a program to checks whether the number entered by user is exactly divisible by 5 but not by 11.
//write a program to checks whether the number entered by user is exactly divisible by 5 but not by 11. …
Write a C program to sort integer values in descending order
//2063.2.a.Write a C program to sort integer values in descending order. #include<stdio.h> void main() { int a[20],i,j,t,n; printf(“enter the size …
HSEB-2066(2.a)
//2066 //Q.2.a.Write a Program to store name and mark o 20 students. Sort the data according with mark in descending …
HSEB-2062
//2062 //Q1.a. write a c prgram to print the 10 positive integers and their factorials. #include<stdio.h> #define max 10 void …
HSEB-2061
//HSEB or NEB//year 2061(2004)/*Q.1(a).The marks obtained by studen in 7 different subjects are entered through the keyboard. The student gets …
