mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
308 B
19 lines
308 B
/* echocr.c */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
int main(int argc,char **argv)
|
|
{
|
|
char szTemp[128];
|
|
int index;
|
|
|
|
strcpy(szTemp,argv[1]);
|
|
for(index=0;index<strlen(szTemp);index++) {
|
|
printf("%c",szTemp[index]);
|
|
}
|
|
printf("%c",0x0d);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
|