sync
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#include <stdio.h>
|
||||
#include "calculations.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
// from her your program starts
|
||||
int variableWithAName = 14;
|
||||
int variableWithAnotherName = 12;
|
||||
|
||||
int result = swap(&variableWithAName, &variableWithAnotherName);
|
||||
|
||||
if (result==0)
|
||||
{
|
||||
printf("succeeded\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
printf("failed, the implementation is empty\n");
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
Reference in New Issue
Block a user