C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
Sample input
subad@123
45
2
Expected output:
385.71
*/
#include <stdio.h>
int main()
{
char id[10];
int hours;
double value, salary;
printf("Input the Employees ID( Max. 10 chars):");
scanf("%s", id);
printf("\nInput the working hrs per week: ");
scanf("%d", &hours);
printf("\nSalary amount/hr: ");//here 2$ right?So enter 2 as input here
scanf("%lf", &value);
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run