Why is c called c?
No Answer is Posted For this Question
Be the First to Post Answer
char *p="name"; printf(p);
How can you return multiple values from a function?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
what r the cpu registers r ther?
What is void main ()?
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
Mention four important string handling functions in c languages .
What are the 3 types of structures?
Write a C program to count the number of email on text
what is an ERP?
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!+....