hey there ,
Im taking C++ courses in my collage (so ım a newbie) and they are teaching programing language a bit different from the examples in this forum.
#include <stdio.h>
int main (void)
{
int x;
int y;
int z;
int min;
printf("enter 3 numbers : ");
scanf("%d %d %d", &x,&y,&z);
min=x;
if (y<x && y<z)
y=min;
if (z<x && z<y)
z=min;
printf("min is : ", min);
return(0);
}
well this works too, but ı can not understand most of the programs in this forum
is there any place to learn how to write that " cout << ".... ; " thing or something like this :S
ty for helping this newcommer:)
/* sorry for my bad english ı hope u could understand what ı meant */