Multiple choice technology programming languages

Which are not provided in C

  1. Test and Loops

  2. Grouping and Subprograms

  3. Synchronization and parallel operations

  4. All of the above

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

The C programming language provides built-in constructs for control flow (tests and loops) and modularity (subprograms/functions). However, it does not have native, built-in language keywords for synchronization or parallel operations; these must be implemented using external libraries like Pthreads or OpenMP.