Virajsinh

A_PRM_05

Oct 7th, 2017
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. /* Write a Program to Print "Hello World" Using Pointer */
  2.  
  3. #include<stdio.h>
  4. #include<conio.h>
  5. void main()
  6. {
  7.     char *p="Hello World";
  8.     clrscr();
  9.     printf("\n Print Character Using Pointer");
  10.     printf("\n %s",p);
  11.     getch();
  12. }
Add Comment
Please, Sign In to add comment