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
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
out put of printf(ā%dā,printf(ram));
How can I run c program?
Write a program in c to replace any vowel in a string with z?
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
how to use showbits function?
what is the use of operator ^ in C ? and how it works?
What is the difference between GETS();AND SCANF();
a simple program in c language
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Who is invented by c?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?