main()
{
float f1=10.5;
double db1=10.5
if(f1==db1)
printf("a");
else
printf("b")
}
Answers were Sorted based on User's Feedback
What is an lvalue?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
what is a non volatile key word in c language?
Differentiate between the expression “++a” and “a++”?
write a prgram of swapping with 2 valiables
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is the difference between Printf(..) and sprint(...) ?
What is uint8 in c?
show how link list can be used to repersent the following polynomial i) 5x+2
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
Write a program to find factorial of a number using recursive function.