Computer Science, asked by kulsumf651, 19 days ago

write program to input your name and weight.​

Answers

Answered by peracc27999
0

Explanation:

#include<stdio.h>

void main()

{

char name;

int weight;

printf("\nEnter your name:");

scanf("%s",&name);

printf("\nEnter your weight:");

scanf("%d",&weight);

}

Similar questions