Computer Science, asked by kethajayasri325, 3 months ago

#include<stdio.h>
int main()
{
typedef int num;
num bunk = 0.00;
printf("%d", bunk);
return 0;
}​

Answers

Answered by jijikoshy07
6

Answer:

0

Explanation:

Integer part of 0.00 is equal to 0.Hence only Zero will be printed("%d ", bunk), when 0.00 is passed , because %d stands for integer

Similar questions