Write a C program to find the multiplication table of any no.
#include<stdio.h> #include<conio.h> main() { int n,i=1; printf("\n Enter any number"); scanf("%d",&n); while(i<=10) { printf("\n %d * %d = %d",n,i,n*i); i++; } getch(); } Output:
Write a C program to multiplication of two matrix.
Write a C program to find factorial(using recursion) of any no.
Write a C program to print pattern below:
** ** * ** * * *
Write a C program to convert decimal no. to binary.
Copyright © 2025 MindStudy
A product by Shunya Intelliware Solution (Registered under MSME Uddyam)