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 c language and why we use it?
write a program in c language for the multiplication of two matrices using pointers?
Write a program for deleting duplicate elements in an array
Explain 'bus error'?
What is function pointer c?
What is strcmp in c?
what are non standard function in c
What should malloc(0) do?
code for bubble sort?
What is fflush() function?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.