Computer Science, asked by manish2701, 1 year ago

what is C programing? how it is works.

Answers

Answered by Anonymous
2
The C compiler (GCC, Clang, Visual C++) reads the C program and compiles it to object code. The linker links all object files and libraries into one executable program, which you run. The C language works by being translated to executable code (.exe or .com files on Windows) once, by the compiler and linker.
Similar questions