You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
807 B
26 lines
807 B
#include "calculatorGetUserInput.h"
|
|
// Note:
|
|
/* This Function may or may not be implemented in actual program, even if it is merged to the main branch.
|
|
If it is temporarily not included in the main Program, then this has a role in future Development of the Project */
|
|
|
|
int allowOnly() //int allowOnly() is helpful for indirectly testing void calculatorGetUserInput().
|
|
{
|
|
const int a = 1;
|
|
if(a == 1) //Just a random constant which has a role in testing
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
void calculatorGetUserInput(float *num1, float *num2)
|
|
{
|
|
if (allowOnly() == 1) //only if int allowOnly() returns 1, void calculatorGetUserInput will display the desired output.
|
|
{
|
|
printf("number1: ");
|
|
scanf("%f", num1);
|
|
printf("number2: ");
|
|
scanf("%f", num2);
|
|
}
|
|
}
|
|
|
|
|