0
Linguagem C
can someone please help me write 2 programs? the first program is to read and write the first letter of a person's name. The second is to read and write a person's age
3 ответов
+ 5
See this
#include <stdio.h>
int main() {
char string[10];
int age;
scanf("%c",string);
printf("%c",*string);
scanf("%d",&age);
printf("\n%d",age);
return 0;
}
+ 2
We will surely help you, but you should show your attempts first.
0
thanks very much