From c946fab9d11575b1193c9298ac7b5c25a70e904c Mon Sep 17 00:00:00 2001 From: Abdalla1423 Date: Tue, 16 Jul 2024 03:20:22 -0700 Subject: [PATCH] delete unneccesary file --- test/tacle_test/programs/ext_func/ext_func.c | 32 -------------------- 1 file changed, 32 deletions(-) delete mode 100644 test/tacle_test/programs/ext_func/ext_func.c diff --git a/test/tacle_test/programs/ext_func/ext_func.c b/test/tacle_test/programs/ext_func/ext_func.c deleted file mode 100644 index ff1d29b..0000000 --- a/test/tacle_test/programs/ext_func/ext_func.c +++ /dev/null @@ -1,32 +0,0 @@ -#include -#include - -int main() { - int x = 5; - int y = 10; - char buffer[20]; - - printf("Before modification:\n"); - printf("x = %d\n", x); - printf("y = %d\n", y); - - // Convert integers to strings - sprintf(buffer, "%d", x); - // Append some digits to the string representation of x - strcat(buffer, "123"); - // Convert back to integer - x = strtol(buffer, NULL, 10); - - // Convert integers to strings - sprintf(buffer, "%d", y); - // Append some digits to the string representation of y - strcat(buffer, "456"); - // Convert back to integer - y = strtol(buffer, NULL, 10); - - printf("After modification:\n"); - printf("x = %d\n", x); - printf("y = %d\n", y); - - return 0; -}