This commit is contained in:
Rens Pastoor
2025-05-27 22:41:46 +02:00
parent d141296aea
commit 11b391b8a1
416 changed files with 25232 additions and 0 deletions

View File

@@ -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);
}