• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include<stdio.h>
2 
3 void
print(char * s)4 print(char* s)
5 {
6 	printf("%s\n",s);
7 }
8