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 |
I heard that you have to include stdio.h before calling printf. Why?
What will be the outcome of the following conditional statement if the value of variable s is 10?
what is array?
2. Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
what is difference between c and c++
write a program to print the one dimensional array.
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Is it possible to use curly brackets ({}) to enclose single line code in c program?
explain what are pointers?
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
Can a program have two main functions?