Answer Posted / nakul sharma
In any programing language there are two following key aspects,
1. Faster Execution
2. Lesser Development time
C language as compared to Low level language (assembly language) have less faster execution time.
And C language as compared to High level language (Java Language) takes more development time.
Because of the reason above C is known as Middle Level Language.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Explain how do you view the path?
How a string is stored in c?
Where we use clrscr in c?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Is file a keyword in c?
How do you define a string?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is a double c?
What is the difference between printf and scanf )?
How can I call a function with an argument list built up at run time?
What does emoji p mean?
What are types of functions?
How can this be legal c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?