#include<stdio.h>
#include<stdlib.h>
#include<iostream.h>
#include<string.h>
void main(){
FILE *fp1,*fp2;
char *a,*b;
int num;
fp1=fopen("myfile.txt","r+");
fp2=fopen("myfile.txt","a+");
cout<<"enter the number of names you want to enter \n";
cin>>num;
a=(char*)malloc(80);
b=(char*)malloc(80);
while(num){
gets(a);
fputs("\n",fp2);
fputs(a,fp2);
num--;
}
cout<<"\n diplay the names";
while(!feof(fp1)){
fgets(b,80,fp1);
cout<<b;
}
/*
//code to search string a in file ... i think logic is right but not able to find the answer
cout<<"enter string for search";
cin>>a;
rewind(fp1);
while(!feof(fp1) && strcmp(b,a)){
fgets(b,80,fp1);
}
if(!strcmp(a,b))
cout<<"name present";
*/
}
sparsh610_1 0 Newbie Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.