Difference between Class and Struct.
Answer Posted / farhat khan
In C struct does not use function(method).
| Is This Answer Correct ? | 6 Yes | 10 No |
Post New Answer View All Answers
Explain what is the most efficient way to store flag values?
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!+....
Explain what is #line used for?
What is string length in c?
Can you mix old-style and new-style function syntax?
Describe dynamic data structure in c programming language?
What is the difference between #include and #include 'file' ?
Why isnt there a numbered, multi-level break statement to break out
What are the different file extensions involved when programming in C?
How do you print only part of a string?
What is graph in c?
Why functions are used in c?
What are integer variable, floating-point variable and character variable?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What are the types of unary operators?