How often do you guys actually use C?

This page summarizes the projects mentioned and recommended in the original post on /r/cprogramming

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • speed-comparison

    A repo which compares the speed of different programming languages.

  • For example, Java runs on the JVM (Java Virtual Machine) instead of running directly on the hardware, and it also has a garbage collector to handle memory management. Running on a virtual machine means your code is more abstracted: you only have to worry about the JVM and not about the platform you’re running on (since the JVM is the platform), and it’s more portable since your code can go on anything that runs the JVM. But running the JVM as an intermediate layer takes more computing power and so does running garbage collection, meaning that you experience a performance penalty. Here’s one benchmark I could find comparing the use of different programming languages to compute pi, in which Java took about 3x as long as C to complete the same task

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts