what type of language is C?
Answers were Sorted based on User's Feedback
C usually a MIDDLE LEVEL language.... why it is called so because it can perform bitwise operations directly and also can perform user understandable operations like printf , scanf, looping etc etc......
here the bitwise operations are those where we can communicate directly through hardware using the OS.......
and also ASSEMBLY LEVEL Programming (ALP) can also be done to the processor direclty through C.......
thank s
| Is This Answer Correct ? | 71 Yes | 11 No |
Answer / ankith.v
C Is One of the the procedure Oriented And Syntax based
Language
| Is This Answer Correct ? | 50 Yes | 6 No |
Answer / mitesh
c is a middle level language.it is easy to understand and write the program.
| Is This Answer Correct ? | 16 Yes | 1 No |
Answer / kiran
As 'C' has the characteristics of both high-level and low-level languages, it is a "Middle level" language. As C programs are machine dependent, it is a "High-level Language".
| Is This Answer Correct ? | 7 Yes | 4 No |
How to write a multi-statement macro?
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
What is the difference between functions abs() and fabs()?
When should I declare a function?
What are the different types of objects used in c?
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
in iso what are the common technological language?
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
How can I find out if there are characters available for reading?
#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 does sizeof return c?