Why is C language being considered a middle level language?
Answer / Chhaya Goswami
C is often classified as a middle-level programming language because it offers features from both high-level languages (like improved readability and abstraction) and low-level languages (like direct memory manipulation). This combination makes C suitable for system programming, application development, and operating systems.
| Is This Answer Correct ? | 0 Yes | 0 No |
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
What is the sizeof () a pointer?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
WHAT IS C?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
Please write the area of a RIGHT ANGLED TRIANGLE.
What is structure pointer in c?
HOW CAN ADD OUR FUNCTION IN LIBRARY.
What are the c keywords?
What is union in c?
what is const volatile?
write a c program to check weather a particluar bit is set or not?