Who developed c language and when?
What is the benefit of using an enum rather than a #define constant?
Explain the use of 'auto' keyword
What is pointer and structure in c?
What do you mean by c what are the main characteristics of c language?
Why c is called free form language?
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!+....
What is the default value of local and global variables in c?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Explain how can I open a file so that other programs can update it at the same time?
List the variables are used for writing doubly linked list program.
What is the size of empty structure in c?
What is a floating point in c?
Explain what are the different data types in c?
Describe explain how arrays can be passed to a user defined function