What is a nested formula?
No Answer is Posted For this Question
Be the First to Post Answer
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
What is function definition in c?
Why is #define used?
Is void a keyword in c?
What is use of bit field?
Can the “if” function be used in comparing strings?
Please write the area of a RIGHT ANGLED TRIANGLE.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
When we use void main and int main?
Without using main fn and semicolon,print remainder for a given number in C language
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }