Basic Structure of C Program

Here you will learn about basic structure of C program.   Any C program is consists of 6 main sections. Below you will find brief explanation of each of them. Basic Structure of C Program Documentation Section This section consists of comment lines which include the name of programmer, the author and other details like …

Basic Structure of C Program Read More »

Linear Search in C

Here you will find program for linear search in C. Linear search is the simplest searching algorithm which is sometimes known as sequential search. In this algorithm each element of array is compared with the targeted element sequentially. Linear Search in C #include<stdio.h> int main() { int a[20],i,x,n; printf(“How many elements?”); scanf(“%d”,&n); printf(“Enter array elements:\n”); …

Linear Search in C Read More »

Transpose of Matrix in C

Here is the program for transpose of matrix in C. We first read a matrix of size mxn and then find its transpose by just interchanging the rows and columns i.e. rows become columns and columns become rows. Transpose of Matrix in C #include<stdio.h> int main() { int a[5][5],i,j,m,n; printf(“How many rows?”); scanf(“%d”,&n); printf(“How many …

Transpose of Matrix in C Read More »

C program which reads a text and count all occurrences of a particular word

#include<stdio.h> #include<conio.h> #include<string.h> void main() { int i=0,j=0,count=0; char str1[100],str2[20],str3[20]; clrscr(); printf(“Enter the text: “); gets(str1); printf(“Enter word to count: “); gets(str2); while(str1[i]!=”) { while(str1[i]!=’ ‘&&str1[i]!=”) //copying the word from the text to a new string str3[j++]=str1[i++]; str3[j]=”; //assigning null character at the end of string j=0; if((strcmpi(str2,str3))==0) //comparing the given word with the copied …

C program which reads a text and count all occurrences of a particular word Read More »