in case any function return float value we must declare
a) the function must be declared as 'float' in main() as well
b) the function automatically returned float values
c) function before declared 'float' keyword
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
What is identifiers in c with examples?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
0 Answers College School Exams Tests,
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
write a program to find out prime number using sieve case?
What is wrong with this declaration?
What is volatile keyword in c?
What is queue in c?
How can I prevent another program from modifying part of a file that I am modifying?
What is diffrance between declaration and defination of a variable or function
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is the code in while loop that returns the output of given code?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }