Sorry! Posting Assignment is allowed only for commercial accounts.
#include <stdio.h> int main() { float f = 0.1; if (f == 0.1) printf("True"); else printf("False"); }a. Trueb. False
#include<stdio.h>int main(){ int a=4, b=2; printf("%d",a---b); return 0;}Output is