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
where do we use volatile keyword?
3.write a simple program that will output your name,phone number,e-mail address,and academic major on separate lines 1.create an account and a personal directory for your work b.find out how to create a subdirectory on your system.create one called info c.you will use a text editor to type in your programs and data files.some C systems have a built in text editor;others do not.Find out what text editor you will be using and how to access it.create a text file(not a program) containing your name ,address,and telephone number on separate lines.Next,write the brand of computer you are using and the name of the text editor.Then write a paragraph that describes your past experience with computers.save this file in your info directory. d. find out how to print a file on your system .print out and turn in the file you created in (c).
What is use of pointer?
What is return type in c?
What is the use of ?
write a c program to convert fahrenheit to celsius?
What is the difference between volatile and const volatile?
What does c mean?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
Explain union.
what is the difference between NULL('\0') and 0?