what type of language is C?

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


Please Help Members By Posting Answers For Below Questions

which is conditional construct a) if statement b) switch statement c) while/for d) goto

740


List some of the static data structures in C?

763


When should volatile modifier be used?

557


Does * p ++ increment p or what it points to?

619


Tell me about low level programming languages.

645






What is the correct code to have following output in c using nested for loop?

613


Differentiate Source Codes from Object Codes

823


Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?

2174


c program to compute AREA under integral

1812


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1859


What are enumerated types?

656


What are the advantages of using linked list for tree construction?

645


What does the message "automatic aggregate intialization is an ansi feature" mean?

694


Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

1866


Write a program to find factorial of a number using recursive function.

647