Guess what will be the output for this code:
#include<stdio.h>
int main()
{
printf("%d",printf("#Live#Love#Laugh#learn"));
return 0;
}
OR
#include<stdio.h>
void main()
{
printf("%d",printf("#Live#Love#Laugh#learn"));
getch();
}
Output:
*****************************happy coding**************************************
Comments
Post a Comment