Answer Posted / ruchika
both are 1 gram means both are same
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How many identifiers are there in c?
What is c language used for?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Place the #include statement must be written in the program?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
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!+....
How do you determine the length of a string value that was stored in a variable?
What does nil mean in c?
What is difference between main and void main?
What is define directive?
Explain the difference between the local variable and global variable in c?
Ow can I insert or delete a line (or record) in the middle of a file?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
When should a type cast not be used?
What is external variable in c?