C Programming and Practices

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

1068 views

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

Super Admin
added 3 years ago
1084 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
1032 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
1149 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
1030 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
1052 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
1003 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
1029 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
1048 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
1029 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