@priyadharshini-xKL9pR
•
Oct 26, 2024
Oct 26, 2024
2.8K
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?
#include<stdio.h>
#include<conio.h>
void main()
{
char *s="hello world";
clrscr();
printf("%.*s", *s);...