C Programming and Practices refers to the study and application of the C programming language, a foundational and versatile language widely used in software development. C is known for its efficiency, low-level memory access, and structured syntax, making it ideal for system programming, embedded systems, and performance-critical applications.
37 questions and answers
Write a C program to transpose of a matrix.
#include<stdio.h> #include<conio.h> main() { int a[10][10],b[10][10],m,n,i,j; printf("\n enter the dimension of the matrix");
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");
Copyright © 2025 MindStudy
A product by Shunya Intelliware Solution
(Registered under MSME Uddyam)