Multiple choice technology programming languages

int main() { printf("hello, world"); return 0; }

  1. C++

  2. C-

  3. C

  4. C#

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The code uses printf() from stdio.h and return 0; - hallmarks of C. C++ would typically use iostream and cout. C# uses different namespace syntax, and C- is not a real language.