Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 255 Bytes

Greater.md

File metadata and controls

18 lines (17 loc) · 255 Bytes

// C program to find the greatest of two numbers

#include<stdio.h> int main() { //Fill the code int num1, num2; scanf(“%d %d”,&num1,&num2); if(num1 > num2) { printf(“%d is greater”,num1); } else { printf(“%d is greater”,num2); } return 0; }