in which language c language is written?

Answer Posted / lavanya

High-level language

Is This Answer Correct ?    25 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

1769


What are structures and unions? State differencves between them.

619


How can I read in an object file and jump to locations in it?

582


Why we use stdio h in c?

585


A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference

635






What is difference between main and void main?

630


What is multidimensional arrays

634


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5212


Is it better to use a macro or a function?

658


Explain what is page thrashing?

612


What is dangling pointer in c?

626


how to capitalise first letter of each word in a given string?

1435


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

634


How can a program be made to print the line number where an error occurs?

653


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

22238