CmdEngineer

Untitled

Jan 12th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1.  
  2. int main(void)
  3. {
  4.     char string[] = "Hello";
  5.     test("Hello");
  6.     test(string);
  7.    
  8. }
  9.  
  10. void test(char string[])
  11. {
  12.     printf("%s", test);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment