This commit is contained in:
2025-12-20 16:49:47 +00:00
parent ef11ce0307
commit 555b9062f3
19 changed files with 234 additions and 1 deletions

22
pa/lab6/return.c Normal file
View File

@@ -0,0 +1,22 @@
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include "general.h"
void win() {
printf("Congratulations, you win!!! You successfully changed the code flow\n");
printf("Flag, %s\n", getflag());
}
void challenge() {
char buffer[10];
printf("You win this game if you are able to call the function win.'\n");
gets(buffer);
}
int main() {
init();
challenge();
return 0;
}