C code: smiley o/p
Here is the code and the output.
I don't understand why the output is a smiley.
Can someone explain?
I don't understand why the output is a smiley.
Can someone explain?
#include<stdio.h> #include<conio.h> void main() { char *s="hello world"; clrscr(); printf("%.*s", *s); getch(); }
0