adsense

Hii, welcome to my site. My name is Om prakash kartik. This blog helps you to learn programming languages concepts.

"Hello Friends" word print without semicolon(;)

#include<stdio.h>
#include<conio.h>
 void main()
  {
    clrscr();
    if(printf("Hello Friends"))
    getch();
  }

Output:- Hello Friends



"Hello Friends" word print without printf() function

#include<stdio.h>
#include<conio.h>
 void main()
  {
    clrscr();
    puts("Hello Friends");
    getch();
  }

Output:- Hello Friends

Post a Comment

0 Comments