if- else 15 is greater than 18 or not ?
C Programming Language / Decision Making of C Language
812Program:
#include"stdio.h" void main( ) { int x,y; x=15; y=18; if (x > y ) { printf("x is greater than y \n"); } else { printf("y is greater than x \n"); } }
Output:
y is greater than x Press any key to continue . . .
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