Ad

Chapter - 7: Data Types Revisited

What will be the output of the following program:


Ad
A
Sections
2
Exercises
#include<stdio.h>
int main()
{
	float a = 13.5;
	double b = 13.5;
	printf("\n%f %lf", a, b);
	return 0;
}

Output: 13.50000 13.50000

Ad

© 2024 Garbage Valuegarbage value logo