1.Why do you call C is middle level language?
2.Why do you call C is userfriendly language.
Answers were Sorted based on User's Feedback
1.bcz it has the characteristic of low level language and
the feature of high level language.So it is called as middle
level language......
2.I think C is not user friendly bcz there are many
rules,regulations that means some predefined syntax to do it.
User frendly language is html, Any thing we can write on the
html file and that can run..
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / anusha
1.C is called as a middle level lang bcoz its a commbination
of both high level lang and the low level lang .
| Is This Answer Correct ? | 7 Yes | 3 No |
can we change the default calling convention in c if yes than how.........?
i want to know the procedure of qualcomm for getting a job through offcampus
Why we use conio h in c?
what is the use of getch() function in C program.. difference b/w getch() and getche()??
29 Answers HCL, IBM, Infosys, TCS, Wipro,
how to reverse string "Hello World" by using pointers only. Without any temp var
How many keywords are there in c?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
What is uint8 in c?
How to define structures? ·
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What will the preprocessor do for a program?