Wednesday, April 1, 2015

C program to accept n numbers from user, store these numbers into an array and calculate average of n numbers.

Write a ‘C’ program to accept ‘n’ numbers from user, store these numbers into an array. And calculate average of ‘n’ numbers.

#include<stdio.h>
#include<conio.h>
void main()
{
int a[20],n,i,sum=0;
float avr;
clrscr();
printf("\nENTER THE RANGE VALUE");
scanf("%d",&n);
for(i=0;i<n;i++)
{
scanf("%d",&a[i]);
}
for(i=0;i<n;i++)
{
sum=sum+a[i];
}
avr=sum/n;
printf("%f",avr);
getch();
}

C program to display the alternate characters from an existing file

Write a ‘C’ program to display the alternate characters from an existing file.

#include<stdio.h>
#include<conio.h>
void main()
{
FILE *fp;
char ch;
int i=0;
clrscr();
fp=fopen("a.txt","r");
if(fp==NULL)
{
printf("\nFILE DOES NOT EXIST");
exit(0);
}
while(1)
{
ch=fgetc(fp);
if(ch==EOF)
 break;
if(i%2==0)
{
printf("%c",ch);
}
i++;
}
fclose(fp);
getch();
}

C program to calculate sum of non_diagonal elements of an n*n matrix.

Write a ‘C’ program to calculate sum of non_diagonal elements of an n*n matrix.

#include<stdio.h>
#include<conio.h>
void main()
{
int a[3][3],i,j,sum=0;
clrscr();
printf("\nENTER THE 3 X 3 MATRIX\n");
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
{
scanf("%d",&a[i][j]);
}
}
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
{
if(i!=j)
{
sum=sum+a[i][j];
}
}
}
printf("\n SUM OF NON-DIAGONAL ELEMENTS OF MATRIX IS :%d",sum);
getch();
}

C program to count the number of characters, number of words and number of lines of a text file and display the result.

Write a ‘C’ program to count the number of characters, number of words and number of lines of a text file and display the result.

#include<stdio.h>
#include<conio.h>
void main()
{
FILE *fp;
char ch;
int noc=0,now=0,nol=0;
clrscr();
fp=fopen("a.txt","r");
if(fp==NULL)
{
printf("file does not exist");
exit(0);
}
while(1)
{
ch=fgetc(fp);
if(ch==EOF)
 break;
noc++;
if(ch==' ')
now++;
if(ch=='\n')
nol++;
}
printf("%d\n%d\n%d",noc,now,nol);
fclose(fp);
getch();
}

C program to accept the data from user and store that data into the text file.

Write a ‘C’ program to accept the data from user and store that data into the text file.


#include<stdio.h>
#include<conio.h>
struct emp
{
int eno;
char ename[20];
int sal;
};
void main()
{
struct emp e;
FILE *fp;
clrscr();
fp=fopen("a.txt","w");
if(fp==NULL)
{
printf("file does not exist");
exit(0);
}
else
{
while(1)
{
printf("enter the eno,ename&sal");
scanf("%d%s%d",&e.eno,&e.ename,&e.sal);
fprintf(fp,"%d%s%d",e.eno,e.ename,e.sal);
}
}
getch();
}

C program to append the contents of one file at the end of another file.

Write a ‘C’ program to append the contents of one file at the end of another file.

#include<stdio.h>
#include<conio.h>
void main()
{
FILE *fp,*fq;
char ch;
clrscr();
fp=fopen("a.txt","r");
fq=fopen("b.txt","a");
if(fp==NULL)
{
printf("file does not exist");
exit(0);
}
if(fq==NULL)
{
printf("file does not exist");
exit(0);
}
while(1)
{
ch=fgetc(fp);
if(ch==EOF)
 break;
fputc(ch,fq);
}
getch();
}

C program to copy one string into another string without using standard function.

Write a ‘C’ program to copy one string into another string without using standard function.

#include<stdio.h>
#include<conio.h>
#include<string.h>
void disp(char *,char *);
void main()
{
char t[20],s[20];
clrscr();
printf("enter the string");
gets(t);
disp(t,s);
getch();
}
void disp(char *t,char *s)
{
while(*t!='\0')
{
*s=*t;
t++;
s++;
}
printf("%s",s);
}

C program to accept m*n matrix from user and display the elements of a given matrix using function.

Write a ‘C’ program to accept m*n matrix from user and display the elements of a given matrix using function.

#include<stdio.h>
#include<conio.h>
void disp(int *,int,int);
void main()
{
int a[3][3],i,j;
clrscr();
printf("enter the matrix element");
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
{
scanf("%d",&a[i][j]);
}
}
disp(a,3,3);
getch();
}
void disp(int *p,int x,int y)
{
int i,j;
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
{
printf("%d\t",*p);
}
printf("\n");
}
}

C program using command line arguments to search for a word in a file and replace it with the specified word.

Write a ‘C’ program using command line arguments to search for a word in a file and replace it with the specified word.

#include<stdio.h>
#include<conio.h>
void main(int argc,char *argv[])
{
FILE *fp,*fq;
char ch;
clrscr();
if(argc!=4)
{
printf("improper no of argument");
exit(0);
}
fp=fopen(argv[1],"r");
if(fp==NULL)
{
printf("file does not exist");
exit(0);
}
fq=fopen("b.txt","w");
if(fq==NULL)
{
printf("file does not exist");
exit(0);
}
while(1)
{
ch=fgetc(fp);
if(ch==EOF)
 break;
if(ch==*argv[2])
{
  fputc(*argv[3],fq);
}
else
{
 fputc(ch,fq);
}
}
 fclose(fp);
 fclose(fq);
 fp=fopen("b.txt","r");
 fq=fopen(argv[1],"w");
 while(1)
 {
   ch=fgetc(fp);
   if(ch==EOF)
      break;
   fputc(ch,fq);
 }
 getch();
       }

C program to check whether given string is palindrome or not.

Write a ‘C’ program to check whether given string is palindrome or not.


#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char name[20];
int l,f,i;
clrscr();
printf("enter the string");
gets(name);
l=strlen(name);
for(i=0;i<l;i++)
{
if(name[i]!=name[l-1])
{
f=0;
break;
}
else
{
f=1;
l--;
}
}
if(f==1)
{
printf("no is palindrome");
}
else
{
printf("no is not palindrome");
}
getch();
}




Featured posts

Happy Independence Day August 15th

 Here's a message for India's Independence Day (August 15th): "शुभ स्वतंत्रता दिवस! आजादी की 79वीं वर्षगांठ पर, आइए हम अपने देश...

Popular posts