Skip to main content

Posts

Showing posts from July, 2018

Largest of three in C and C++

             Largest of three values using IF else   Largest of three values: #include<stdio.h> #include<conio.h> void main() {                                              float a,b,c;                                              printf(“Enter three values\n”);                               ...