Explain a pre-processor and its advantages.
What is character constants?
How is a structure member accessed?
Can true be a variable name in c?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
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!+....
Is it valid to address one element beyond the end of an array?
Tell me is null always defined as 0(zero)?
if p is a string contained in a string?
What is pointer & why it is used?
What is the difference between a string and an array?
What oops means?
How are 16- and 32-bit numbers stored?
Explain what is the benefit of using enum to declare a constant?