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

958 views

Create a Sparse Matrix in C.

#include<stdio.h> #include<conio.h> #define MAX1 3 #define MAX2 3 struct sparse { int *sp; int row; };

Demo Teacher
added 2 years ago
926 views

Implement Bubble Sort using C.

#include<stdio.h> #include<conio.h> void main() { int a[100],i,n,j,temp; clrscr(); printf("\n\n\n\t\t ********** BUBBLE SORT **********\n\n\n"); printf("Enter the no of digit to be sorted ...... ");

Demo Teacher
added 2 years ago
941 views

Write a C program to find the value of Sine(X).

#include<stdio.h> #include<conio.h> #include<math.h> int sine(int); int fact(int); void main() { int x; float result; clrscr();

Demo Teacher
added 2 years ago
985 views

Write a C program to calculate the following sum:

Sum = 1-x^2/2!+x^4/4!-x^6/6!+x^8/8!-x^10/10!

#include<stdio.h> #include<conio.h> #include<math.h> void main() { int i,n=10,x; long int fact=1; float sum=1; printf(“Enter the x value:”);

Demo Teacher
added 2 years ago
907 views

Write a C program to find the roots of a quadratic equation.

#include<stdio.h> #include<conio.h> #include<math.h> void main() { float a,b,c,d,r1,r2,imp,rp; clrscr(); printf(“Enter a,b,c:”); scanf(“%f%f%f”,&a,&b,&c);

Demo Teacher
added 2 years ago
935 views

Write a C program to print the following pattern output.

1

1    2

1    2    3

1    2    3    4

1    2    3    4    5

#include<stdio.h> #include<conio.h> main() { int i,j,n; printf("\n enter how many lines"); scanf("%d",&n); for(i=1;i<=n;i++)

Demo Teacher
added 2 years ago