Associate
- Joined
- 1 Mar 2008
- Posts
- 955
- Location
- Near Longleat, Raaaar!!
AT - LM for the Webbs to call me.
#include<stdio.h>
#include<string.h>
void return_input(void){
char array[30];
gets(array);
printf("%s\n",array);
}
main(){
return_input();
return(0);
}