Answer Posted / 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 |
Post New Answer View All Answers
What is calloc malloc realloc in c?
Distinguish between actual and formal arguments.
What is multidimensional arrays
How do you list files in a directory?
In which language linux is written?
Are the variables argc and argv are always local to main?
Where static variables are stored in memory in c?
How reliable are floating-point comparisons?
What is a function in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What are the advantages of c preprocessor?
Is null equal to 0 in sql?
What is define directive?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)