Extend the program below so that after closing the files, program asks the user to enter a name. The program should store this input as a string, and then search the name array for the ‘search name’ just entered by the user. If the search name is found in the name array, the program will print the name, age and wage corresponding to the search name to the screen. If the search name is not found in the name array, program prints “Name not found” to the screen. The search would need to use string comparison functions. (b)    #include #include char c; char name[10][50]; int roll[10]; float marks[10]; int main (int argc, char **argv)  {     FILE* f;     if (argc != 2)  {         printf("No filename in the argument");         return 1;     }          f = fopen(argv[1], "r");        if (f == NULL) {         printf("The file cannot be opened successfully: %s\n",argv[1]);         return 1;     }     printf("The file has been opened successfully\n\n");          int lines = 0;     while( c != EOF)     {         c = fgetc(f);          if(c == '\n') {             lines++;         }         if(c ==EOF) {             lines++;         } else {             printf("%c",c);          }     }          printf("\n\nFile has Total %d Lines.",lines);          //EXTENDED PART           f = fopen(argv[1], "r");      lines=0;     while( fscanf(f, "%s %d %f\n", name[lines], &roll[lines], &marks[lines]) != EOF )     {          lines++;     }     fclose(f);     char filename[] = "output.csv";     f=fopen(filename,"w");     int i=0;     while(i

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter8: Arrays
Section: Chapter Questions
Problem 9PE
icon
Related questions
Question

Extend the program below so that after closing the files, program asks the user to enter a name. The program should store this input as a string, and then search the name array for the ‘search name’ just entered by the user. If the search name is found in the name array, the program will print the name, age and wage corresponding to the search name to the screen. If the search name is not found in the name array, program prints “Name not found” to the screen. The search would need to use string comparison functions.

(b)    #include<stdio.h>
#include<stdlib.h>

char c;
char name[10][50];
int roll[10];
float marks[10];

int main (int argc, char **argv)

 {

    FILE* f;
    if (argc != 2)

 {
        printf("No filename in the argument");
        return 1;
    }
    
    f = fopen(argv[1], "r");   
    if (f == NULL) {
        printf("The file cannot be opened successfully: %s\n",argv[1]);
        return 1;
    }
    printf("The file has been opened successfully\n\n");
    
    int lines = 0;
    while( c != EOF)
    {
        c = fgetc(f); 
        if(c == '\n')

{
            lines++;
        }
        if(c ==EOF)

{
            lines++;
        }

else

{
            printf("%c",c); 
        }
    }
    

    printf("\n\nFile has Total %d Lines.",lines);
    
    //EXTENDED PART
     
    f = fopen(argv[1], "r"); 
    lines=0;
    while( fscanf(f, "%s %d %f\n", name[lines], &roll[lines], &marks[lines]) != EOF )
    { 
        lines++;
    }
    fclose(f);
    char filename[] = "output.csv";
    f=fopen(filename,"w");
    int i=0;
    while(i<lines)

{
    fprintf(f,"%s,%d,%f\n",name[i],roll[i],marks[i]);
    i++;
}
    fclose(f);
    
    return 0;  
}

 

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,