Skip to content

Instantly share code, notes, and snippets.

View Shameera17's full-sized avatar
:octocat:
Back to WORK 🍨

Shameera Carrim Shameera17

:octocat:
Back to WORK 🍨
View GitHub Profile
@Shameera17
Shameera17 / README.md
Created November 27, 2018 03:30 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@Shameera17
Shameera17 / helloWorld.C
Last active November 11, 2018 05:25 — forked from bettinson/helloWorld.C
/* Hello World program */
#include<stdio.h>
main()
{
printf("Hello World");
system("pause");
return 0;
}
@Shameera17
Shameera17 / hello1.c
Created November 11, 2018 04:51 — forked from ramsey/hello1.c
Hello, World in C
#include <stdio.h>
int main()
{
printf("hello, world\n");
}
// Compile, then run `./a.out 1>stdout.txt 2>stderr.txt`
// Then run `echo $?`
// stdout.txt should contain "hello, world"
@Shameera17
Shameera17 / HelloWorld.cpp
Created October 27, 2018 07:31 — forked from jonathonw/HelloWorld.cpp
C++ Hello World
#include <iostream>
int main()
{
std::cout << "Hello World!" << std::endl;
return 0;
}
@Shameera17
Shameera17 / hello.cpp
Created October 27, 2018 07:30 — forked from human-divanshu/hello.cpp
Hello world program in C++
/*
include the input / output stream
header file
*/
#include <iostream>
/*
Just telling that if you don't find
reference to something then just look in
std namespace, it may be declared there
@Shameera17
Shameera17 / HelloWorld.cpp
Last active October 27, 2018 07:23 — forked from kilip/HelloWorld.cpp
C++ Hello World
#include <iostream>
int main()
{
std::cout << "Hello, World!\n";
system("pause");
return 0;
}