the question is that what you have been doing all these
periods (one year gap)
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between pure virtual function and virtual function?
Write a program to swap two numbers without using third variable?
Define function pointers?
When is a void pointer used?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
List some basic data types in c?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
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!+....
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
How to compare array with pointer in c?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Can we use any name in place of argv and argc as command line arguments?