Computer Science, asked by kumbakuluki, 4 months ago

please tell me the answer and explain it​

Attachments:

Answers

Answered by nithya353
0

Explanation:

a. #include<stdio.h>

void main()

{

string name = "Rahul" ;

string address = "2, Elix 4th Street, mugil main road, mumbai" ;

printf("%s\n%s", name, address);

}

b. #include<stdio.h>

void main()

{

float salary, net, incentive;

scanf("%f",&salary);

incentive = (7 * salary)/100;

net = salary + incentive;

printf ("%0.2f",net);

}

Similar questions