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

1036 views

Write a C program to multiplication of two matrix.

#include<stdio.h> #include<conio.h> main() { int a[10][10],b[10][10],c[10][10],m,n,p,q,i,j,k;

Super Admin
added 3 years ago
1155 views

Write a C program to find factorial(using recursion) of any no.

#include<stdio.h> #include<conio.h> int fact(int); main() { int n,result;

Super Admin
added 3 years ago
1034 views

Write a C program to print pattern below:

*

* *

* * *

* * * *

#include<stdio.h> #include<conio.h> main() { int n,i,j;

Super Admin
added 3 years ago
1146 views

Write a C program to convert decimal no. to binary.

#include<stdio.h> #include<conio.h> main() { int bin[50],i=0,n,j;

Super Admin
added 3 years ago
1068 views

Write a C program to convert binary to decimal using function.

#include<stdio.h> #include<conio.h> #include<math.h> int bin_to_dec(int); main() { int n,result;

Super Admin
added 3 years ago
1102 views

Write a C program to convert any name in short name.

#include<stdio.h> #include<conio.h> int isupper(char); main() { char c; printf("\n Enter any name");

Super Admin
added 3 years ago
1092 views

Write a C procram to G.C.D. of two no. using recursion.

#include<stdio.h> #include<conio.h> int gcd(int,int); main() { int a,b,temp,result;

Super Admin
added 3 years ago
1130 views

Write a C program to print all prime no.(1-100).

#include<stdio.h> #include<conio.h> main() { int i,j,n; printf("\n The prime numbers are(1-100)");

Super Admin
added 3 years ago
1046 views

Write a C program to addition of two matrices.

#include<stdio.h> #include<conio.h> main() { int a[10][10],b[10][10],c[10][10],m,n,p,q,i,j; printf("\n Enter the dimension of the 1st matrix");

Super Admin
added 3 years ago
1017 views

Write a C program to convert Centigrade temp into Farenhite temp.

#include<stdio.h> #include<conio.h> main() { float a,b;

Super Admin
added 3 years ago