11 lines
215 B
C
11 lines
215 B
C
#include <stdio.h>
|
|
#include "askname.h"
|
|
int main(int argc, char **argv)
|
|
{
|
|
char first[255], last[255];
|
|
askname(first, last);
|
|
printf("Hello, %s %s!\n", first, last);
|
|
return 0;
|
|
// Test Commit # 1
|
|
}
|