Loading repository data…
Loading repository data…
offensive-vk / repository
Classics: (C/C++) ~ This Repository Contains All of My C & C++ Programs. Hence, An Old School Repo. All Programs Have Categorized for Reference.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
C is a general-purpose, low level computer programming language. It was created in the 1970s by Dennis Ritchie, and remains very widely used and most influential. C is an imperative procedural language, supporting structured programming, lexical variable scope, and recursion, with a static type system. It was designed to be compiled to provide low-level access to memory and language constructs that map efficiently to machine instructions.
C++ is a general-purpose, high level, object based, statically typed programming language developed as an extension of the C programming language. C++ was designed with systems programming and embedded, resource-constrained software and large systems in mind, with performance, efficiency, and flexibility of use as its design highlights.
#include <iostream>
int main(int argc, char const *argv[]) {
int i = 0;
while (i < 1000000000)
{
i++;
}
std::cout << "Hello All, C++ is Easy. !!" << std::endl;
std::cout << i << std::endl;
return 0;
}
$ g++ filename.cpp -o filename
$ gcc filename.c -o filename
You are allowed to copy and implement these programs freely.