Computer Science, asked by ys10777654, 6 months ago

c program with function to find largest among 2 no​

Answers

Answered by ROCKYCEO
1

Answer:

Explanation:

Program to find the greatest of two numbers

// 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);

Similar questions