C Program to find Greatest of two number using command Line programming
C Programming Language / Command Line Arguments
1061Program:
// Program by atnyla // Find Greatest of two number using command Line programming #include int main(int argc, char *argv[]) { int c[10]; int i,temp,j,greatest; j = 0; for(i=1; i greatest) { greatest = c[i]; } } printf("Greatest of ten numbers is %d", greatest); return 0; }
Output:
12 16 Greatest of ten numbers is 16
Explanation:
Nope
This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS