17. if(sizeof(double) > -1)
printf("M");
else
printf("m");
return 0;
Compiler error
None
M
m
try not to copy paste physics or chemistry ans for the sake of points .
Answers
Answered by
0
Answer:
cyycouc and ovuuf fu of red roses trI rdttddued dsss
Answered by
0
Answer:
#include <stdio.h>
#include <conio.h>
//C Program to Display Size of Different Datatypes
int main()
{
printf("Type\t\t\tSize (bytes)");
printf("\nCharacter\t\t %d" ,sizeof(char));
printf("\nInteger\t\t\t %d" ,sizeof(int));
printf("\nLong in\t\t\t %d" ,sizeof(long int));
printf("\nFloa\t\t\t %d" ,sizeof(float));
printf("\nDouble\t\t\t %d" ,sizeof(double));
printf("\nLong double\t\t %d" ,sizeof(long double));
getch();
return 0;
}
Explanation:
hope helpful...
Similar questions