list the no of files created when c source file is compiled
Answer Posted / rahul maury
.obj
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is the advantage of using #define to declare a constant?
What are the application of void data type in c?
Why functions are used in c?
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 benefit of using an enum rather than a #define constant?
What is struct node in c?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
Why can’t constant values be used to define an array’s initial size?
Why doesnt long int work?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Difference between goto, long jmp() and setjmp()?
Explain built-in function?
What is fflush() function?
When do we get logical errors?