Posted inProg. in C Write a C program to print series of reverse number upto 1 using functions #include<stdio.h> #include<conio.h> void printn(int n) { printf("%d\n",n); if(n!=1) { … Posted by dipak May 30, 2024
Posted inProg. in C Write a c program to print the series of number with skipping the desired number. #include<stdio.h> #include<conio.h> void main() { int i ,j ,n; clrscr(); printf("Enter the value of… Posted by dipak May 29, 2024
Posted inProg. in C Write a C program to find the maximum number from 3 numbers. #include<stdio.h> #include<conio.h> int main(); { int a,b,c; clrscr(); printf("Enter value of A:"); … Posted by dipak May 28, 2024
Posted inProg. in C Write a C program to print the pattern of holow rectangle. #include<stdio.h> #include<conio.h> void main() { int i,j,n,m; clrscr(); printf("Enter no. of rows to print rectangular matrix:"); … Posted by dipak May 28, 2024