Extend the program belowso 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, your program prints “Name not found” to the screen. The search would need to use string comparison functions. #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

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter8: Arrays
Section: Chapter Questions
Problem 10RQ
icon
Related questions
Question

Extend the program belowso 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, your program prints “Name not found” to the screen. The search would need to use string comparison functions.

#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
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning