Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

Please match your code given below.
#include
int main() {
int z;
int x=15,y=9;
z = ( x > y ) ? x : y;
printf("%d",z);
return 0;
}


//Also make sure every variables are declared*.
3 years ago