13 lines
212 B
C
13 lines
212 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
char initial;
|
||
|
|
||
|
printf("Please enter the following info:");
|
||
|
scanf("%c", &initial); // scanf("Initial i%". i%)
|
||
|
print("Your initials are %i");
|
||
|
|
||
|
return 0;
|
||
|
}
|