Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Write a Program to Print "Hello World" Using Pointer */
- #include<stdio.h>
- #include<conio.h>
- void main()
- {
- char *p="Hello World";
- clrscr();
- printf("\n Print Character Using Pointer");
- printf("\n %s",p);
- getch();
- }
Add Comment
Please, Sign In to add comment