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
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
What are the keywords in c?
when user give a number it multiply with 9 without useing '+' and '*' oprator
Explain how can I make sure that my program is the only one accessing a file?
wt is d full form of c
The difference between printf and fprintf is ?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Can we initialize extern variable in c?
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none