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
Explain what is the difference between far and near ?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
What type is sizeof?
advantages of pointers?
Hi, main() { } Is a user defined function or Built in Functionn
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
who is the father of C Language?
20 Answers CTS, UST,
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
What are unions in c?
what are brk, sbrk?
What is the purpose of type declarations?
What header files do I need in order to define the standard library functions I use?