ratio,age,persentage
No Answer is Posted For this Question
Be the First to Post Answer
What is infinite loop?
When should you use a type cast?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
what is the difference between getch() and getchar()?
How can you call a function, given its name as a string?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the process of writing the null pointer?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
How can I write functions that take a variable number of arguments?
Why do we need functions in c?
Write a program that can show the multiplication table.
Explain output of printf("Hello World"-'A'+'B'); ?