OneCompiler

hard printing

91

let's see somme hard ways to print "hello world":

this is c++

 #include <iostream>
 
 int main() {
   std::cout << "hello world";
   return 0;
 }

this is c

#include <stdio.h>

int main() {
  printf("hello world");
  return 0;
}