The Q&A Community for Students

MindStudy, question and answer site designed to help students, to help each other:
To ask, to learn, to share, to grow.

Ask Questions

Get the right answers. Fast

Answer Questions

Submit answers for community.

Be Somebody's Hero

Pat yourself on the back. You deserve it.

All Questions

542 questions

1163 views

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");

Super Admin
added 3 years ago
1116 views

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");

Super Admin
added 3 years ago
1229 views

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");

Super Admin
added 3 years ago
1131 views

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);

Super Admin
added 3 years ago
1127 views

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);

Super Admin
added 3 years ago
1087 views

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");

Super Admin
added 3 years ago
1104 views

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");

Super Admin
added 3 years ago
1133 views

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");

Super Admin
added 3 years ago
1105 views

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");

Super Admin
added 3 years ago
1188 views

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();

Super Admin
added 3 years ago