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 the description for syntax errors?
Explain what happens if you free a pointer twice?
Write a C program to perform some of the operation which can be performed using Single linked list
What are the different types of errors?
What are the uses of a pointer?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Can 'this' pointer by used in the constructor?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
how to connect oracle in C/C++.
What are the uses of null pointers?
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.
Can a pointer be null?