Back

C

The C programming language is a general-purpose programming language known for its simplicity and efficiency. It is commonly used for system programming, embedded systems, and developing software applications.

Hello, world code example:

#include 
#include 

int main(void)
{
  printf("Hello world!\n");
  return EXIT_SUCCESS;
}

Popularity: 19.44% of developers are using or have used this language.*
*According to StackOverflow's 2023 survey.

Repositories on GitHub: 2,660,456