C program to find biggest number from three number by using nested if statement Problem Description This program takes the 3 numbers and finds the biggest among all. Problem Solution 1. Take the three numbers as input. 2. Check the first number if it greater than other two. 3. Repeat the step 2 for other two numbers. 4. Print the number which is greater among all and exit. Program codes:- here the program of finding biggest of three number run this in your Linux, DEV C++,turbo c++ #include<stdio.h> main() { int num1,num2,num3,big; ...
fundamental of computer science topics like C programming, Database management System, Digital logic Design, Discrete mathematics ,And other topics from this blog
Comments
Post a Comment
please subscribe my blog and let me suggest how I improve this site