Sunday, March 19, 2023

print "hallo eworld " without using semi colon (;)

 //print "hallo eworld " without using semi colon (;)

#include <stdio.h>
int main (){
    if (printf ("hallo world "))
    return 0;
}

No comments:

Post a Comment

print a multiplication table of any integer taking from user

 // print a multiplication table of any integer taking from user  #include "stdio.h" int main () { int n,mul,i; printf ("...