• Contact Us
  • We are a dedicated and quite group of technologists.

C & C++

C and C++ programming language

Hello, World!

/* hello.c */
#include <stdio.h>
int main() {
  char str[] = "hello, world!";
  printf("%s\n", str);
  return 0;
}

/* hello.cpp */
#include <iostream>
using namespace std;
int main() {
  char str[] = "hello, world!";
  cout << str << endl;
  return 0;
}