Answers for "boolean input in c"

C
0

boolean input in c

#include <stdbool.h>
#include <stdio.h>

bool b;
int temp;

scanf("%d", &temp);
b = temp;
Posted by: Guest on April-09-2022

Code answers related to "C"

Browse Popular Code Answers by Language