Interview Question

What is C language?

C is a portable compiled language with direct control over data and memory.

💡 Concept ✅ Quick Revision ⚙ C

Answer

C is a general-purpose programming language designed for efficient, portable systems and application programming. • It provides functions, structured control flow, arithmetic, arrays, structures, and pointers. • C exposes low-level memory operations but leaves many machine details implementation-defined. • A strictly conforming program relies only on behavior guaranteed by the C standard.

💡 C Example

#include <stdio.h> int main(void) { puts("Hello, C"); return 0; }

Output

Hello, C

⚡ Quick Revision

C is a portable compiled language with direct control over data and memory.