Who developed the C programming language? - correct answer ✔Dennis M.
Ritchie
When was C first implemented? - correct answer ✔1972
Why is C widely used? - correct answer ✔- Easy to learn
- Structured language
- It can be compiled on a variety of computer platforms
- It can handle low-level activities
Which language is C the successor of? - correct answer ✔B
C runs nearly as fast as which other language? - correct answer ✔Assemble
language
What is the file extension of a C language source code file? - correct answer
✔.c
What tools are required to set up an environment in order to write, compile,
and run a program written in the C language? - correct answer ✔- C compiler
- Text editor
What type of file contains the source code? - correct answer ✔source files
What is source code compiled into? - correct answer ✔machine language
, #include <stdio.h>
represents what in c programming - correct answer ✔preprocessor
command
int main()
represents what in c programming - correct answer ✔the main function
where the program execution begins
/* my first program in C*/
represents what in c programming - correct answer ✔comments
printf("Hello, World!\n");
represents what in c programming - correct answer ✔function available in c
return 0;
represents what in c programming - correct answer ✔terminates the main()
Given the source code below, how many tokens make up the statement?
printf("Hello COP 3223!"); - correct answer ✔5
In a C program, an individual statement must be ended with a semicolon? T/F
- correct answer ✔True
These are the multiple formats of an acceptable comment in C - correct
answer ✔- // comment
- /* comment */