Answer to Question #234264 in C for Reddy mounika

Question #234264
An IT organization decides to collect details of an employee and process the details to decide on whether the employee :
• Employee has any meritorious achievement
• Is he eligible for promotion
• Does he need additional technical training support for performing tasks assigned
The following details need to be collected, namely his name, contact details, skills and qualification, service, awards, etc
• The employee would be often incentives if he has received awards for any IT skill and has completed 6 years service
• The employee would be offered promotion if he has contributed to improve business by way of designing new software and patented the same
1
Expert's answer
2021-09-07T16:30:55-0400


#include <stdio.h>


int main()
{
    char name[50];
    char contact[50];
    char details[50];
    char skills[50]; 
    char qualification[50];
    int service; 
    int awards;
    
    printf("\nEnter name: ");
    scanf("%s",name);
    printf("\nEnter contact: ");
    scanf("%s",contact);
    printf("\nEnter details: ");
    scanf("%s",details);
    printf("\nEnter skills: ");
    scanf("%s",skills);
    printf("\nEnter qualification: ");
    scanf("%s",qualification);
    printf("\nEnter service: ");
    scanf("%d",&service);
    printf("\nEnter awards: ");
    scanf("%d",&awards);
    
    printf("\nName= %s",name);
    printf("\nContact= %s",contact);
    printf("\ndetails= %s",details);
    printf("\nskills= %s",skills);
    printf("\nqualification= %s",qualification);
    printf("\nservice= %d",service);
    printf("\nawards= %d",awards);


    return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

Assignment Expert
08.09.21, 06:23

Dear Reddy mounika you are to input the proper data

Reddy mounika
08.09.21, 05:04

I need output aslo

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS