Multiple choice technology programming languages int main() { printf("hello, world"); return 0; } C++ C- C 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.