explain what are actual arguments?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is difference between scanf and gets?

0 Answers  


How can you return multiple values from a function?

0 Answers  


write a c program in such a way that if we enter the today date the output should be next day's date.

0 Answers  


Combinations of fibanocci prime series

0 Answers  


What is difference between arrays and pointers?

0 Answers  






What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

0 Answers  


What is const keyword in c?

0 Answers  


Was 2000 a leap year?

0 Answers  


How can you invoke another program from within a C program?

0 Answers  


how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y

4 Answers   TCS,


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!+....

2 Answers   Ignou,


write a c program to find biggest of 3 number without relational operator?

12 Answers   TCS, Wipro,


Categories