#include int main() { int a = 0, b = 0, c = 0; printf("Enter three integer numbers to find the maximum value\n"); scanf("%d %d %d",&a,&b,&c); printf("Maximum value: %d", ((a>b && a>c) ? a : (b>a && b>c) ? b : c)); return 0; }