Skip to content

Classics: (C/C++) ~ This Repository Contains All of My C & C++ Programs. Its An Old School Repo. Please Drop a ⭐ to Help Others Find This Project.

License

Notifications You must be signed in to change notification settings

offensive-vk/Classics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

What is C ?

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 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.

  • Paradigm - Multi-paradigm: imperative (procedural), structured
  • Designed by Dennis Ritchie
  • First appeared - 1972; (50+ years ago)
  • Typing discipline - Static, weak, manifest, nominal
  • OS - Cross-platform
  • Filename extensions .c, .h
  • Read More at Wikipedia

What is C++ ?

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.

  • Paradigms - Multi-paradigm: procedural, imperative, functional, object-oriented, generic, modular
  • Designed by Bjarne Stroustrup
  • First appeared in 1985; (39 years ago)
  • Typing discipline - Static, strong, nominative, partially inferred
  • OS - Cross-platform
  • Filename extensions - .C, .cc, .cpp, .cxx, .c++, .h, .H, .hh, .hpp, .hxx, .h++ .cppm, .ixx.
  • Read More at Wikipedia

Classics - C and C++ Programs

  • C/C++ is an awesome programming languages. Yet Powerful also.
  • You can find Contribution Guidelines here and Security Guidelines here.
  • This Repository Contains All of My Best C & C++ Programs.
  • Trick - All Valid C Code is Also A Valid C++ Code.
  • (i.e You Can Save Your C Source Code with .cpp extension.)
  • Enjoy ! You can try Shell Scripting too. Try Now >

Sample Code:

#include <iostream>
int main(int argc, char const *argv[]) {
    int i = 0;
    while (i < 1000000000)
    {
        i++;
    }
    std::cout << "Hello Users !!" << std::endl;
    std::cout << i << std::endl;
    return 0;
}

To Compile any .cpp | .cxx | .c++ Source File :

$ g++ filename.cpp -o filename

To Compile Any .c Source File :

$ gcc filename.c -o filename

You are allowed to copy and implement these programs freely.

Happy Coding ~ offensive-vk

About

Classics: (C/C++) ~ This Repository Contains All of My C & C++ Programs. Its An Old School Repo. Please Drop a ⭐ to Help Others Find This Project.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks