What is a nested formula?
No Answer is Posted For this Question
Be the First to Post Answer
why r u join this company? give solid resons.
16 Answers IBM, Infosys, TCS,
program for comparing 2 strings without strcmp()
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
how to find the size of the data type like int,float without using the sizeof operator?
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
What does %f mean c?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
What functions are in conio h?
write a program to sort the elements in a given array in c language
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }