#Find gratest number
1 posts
How to find gretest in 3 number using C Programming
C Program to find greatest in 3 numbers
#include <stdio.h>
int main() {
int a, b, c;
printf("\nEnter value of a, b & c : ");
scanf("%d %d %d", &a, &b, &c);
if ((... Read Mores
Codegyan
12-Dec-2021 9:00:53