12 lines
117 B
C
12 lines
117 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
int a = 0.1;
|
||
|
int b = 0.2;
|
||
|
int c = a + b;
|
||
|
|
||
|
printf("Value of c is: %d\n",c);
|
||
|
|
||
|
}
|