3,224 views
1 votes
1 votes

Which of the following statements is true regarding C language?

  • S1: C is a functional language
  • S2: C is a declarative language
  • S3: C is a procedural language
  • S4: C is a structured language
  1. S1, S2 and S3 only
  2. S2 and S4 only
  3. S2, S3 and S4 only
  4. S1, S3 and S4 only

3 Answers

1 votes
1 votes
0 votes
0 votes
i think the answer should be (d) s1,s3,s4.

because  c is completly functional and procedure language . And their is also a structure facility .
Answer:

Related questions

3 votes
3 votes
2 answers
2
8 votes
8 votes
2 answers
3
3 votes
3 votes
4 answers
4
Arjun asked Oct 18, 2016
777 views
What will be the output of the following code?#include <stdio.h int main() { char a = 'A', z = 'Z'; printf("%d", z-a); }