any "C" function by default returns an
a) int value
b) float value
c) char value
d) a & b
No Answer is Posted For this Question
Be the First to Post Answer
What library is sizeof in c?
why do we use pointer instead directly acessing the data?
What Is The Difference Between Null And Void Pointer?
How can we open a file in Binary mode and Text mode?what is the difference?
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
what is answer for perfect number????????????????
can we write a c program with out using main
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What is #include stdio h?
how to find the largest element of array without using relational operater?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
Find the highest of three numbers and print them using ascending orders?