Advertisement
Aminpro

[ECP 1016]Tutorial 9 Question 3

Aug 26th, 2012
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. //https://www.facebook.com/AminproPastebin
  2.  
  3. #include<stdio.h>
  4. int main()
  5. {
  6.     char *name1;
  7.     char *name2;
  8.     name2 = "MMU";
  9.     name1 = name2;
  10.     puts(name1);
  11.     puts(name2);
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement