MindStudy, question and answer site designed to help students, to help each other:
To ask, to learn, to share, to grow.
Get the right answers. Fast
Submit answers for community.
Pat yourself on the back. You deserve it.
542 questions
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");
Write a C program to find the factorial of any number.
#include<stdio.h> #include<conio.h> main() { int n; long int fact=1; printf("\n Enter any number");
Write a C program to find the GCD of two numbers.
#include<stdio.h> #include<conio.h> main() { int a,b,r,t; printf("\n Enter two number");
Write a C program to find minimum among three numbers.
#include<stdio.h> #include<conio.h> main() { int a,b,c,min; printf("\n enter three numbers"); scanf("%d %d %d",&a,&b,&c);
Write a C program to print the fibonacci series.
#include<stdio.h> #include<conio.h> main() { int n,f1,f2,f3; printf("\n enter how many number"); scanf("%d",&n);
Write a C program to convert any number into word.
#include<stdio.h> #include<conio.h> main() { int n,x,y; printf("\n Enter any number");
Write a C program to find a number is AMSTRONG or NOT.
#include<stdio.h> #include<conio.h> main() { int n,x,digit,s=0; printf("\n enter any number");
Write a C program to find a no. is PALINDROME or NOT.
#include<stdio.h> #include<conio.h> main() { int n,x,digit,r=0; printf("\n enter any number");
Write an program to generate Pascal’s triangle.
#include <stdio.h> #include <conio.h> main() { int a[10][10],i,j,k,n; clrscr(); printf("Enter the height of the pascal traingle");
Write a C- Program To Count The Lines, Words, Characters In A Given Text.
#include <conio.h> #include <stdio.h> main() { char text[200]; int i,l,ch,w,sp; clrscr();
Copyright © 2025 MindStudy
A product by Shunya Intelliware Solution
(Registered under MSME Uddyam)