Find the largest of three numbers using nested if-else.
#include <stdio.h>int main() { int a, b, c; scanf("%d %d %d", &a, &b, &c); if (a >= b && a >= c) printf("Largest = %d\n", a); else if (b >= a && b >= c) printf("Largest = %d\n", b); else printf("Largest = %d\n", c); return 0;}