Monday, September 16, 2019

2nd sheet 3rd question

#include<stdio.h>
main()
{  
float sales,salary;
printf("enter the total sales of last week in dollors  \n");
scanf("%f",&sales);
salary=200+(sales*9)/100;
printf("total salary in dolors = %f",salary);




}

No comments:

Implement stsStr Leetcode solution

  28.   Implement strStr() Easy Implement  strStr() . Given two strings  needle  and  haystack , return the index of the first occurrence of...