Yeaseen
Yeaseen
Hi there, I added a couple of resources for ML and Security. Also, pre-commited against all files. - Regarding ML, my implementation of some renowned ML algorithms such as Artificial...
For `c2rust` to be installed on `Ubuntu 22.04`, the library `libstdc++-12-dev` is a prerequisite. I added this to the Readme file. Also, I discarded any `.DS_store` file to be uploaded...
## Source C code ```c #include typedef struct{ int intM; } mystruct; mystruct test_bool(int inp){ return (mystruct){.intM = inp != 0}; } int main(){ int b = 5; mystruct result...
## Source C code ```c #include union Data { int p_p; }; union Data data1 = { 100 }; int main() { printf("Value at the start of main: %d\n", data1.p_p);...
Sorry to give c4go a hard time. I really care about the issues that are unexplored in c4go. Maybe I will explore this tool. ## Source C Code: ```c #include...
## Source C code: ```c #include int global_int = 1; int main() { int value = 1; switch (value) { global_int++; case 1: printf("Case 1\n"); case 2: printf("Case 2\n"); break;...
## Source C code: ```c #include union TypePunning { int intValue; }; int main() { union TypePunning pun; pun.intValue = 1; pun.intValue =(int)1.23f; printf("Result: %d\n", pun.intValue); return 0; } ```...
Giving CxGo a hard time to explore this tool. ## Source C code: ```c #include int main() { int array3D[3][3][3]; int (*pArray3D)[3][3] = array3D; int i, j, k; for (...
## Input C code (test.c) ```c #include int globe = 35; int* fn1(int strd) { static int result; result = globe; if (strd > 2) { result += 4; }...
## Original C code ```c int main() { float local_float = 0.0f; local_float += (4 < 4.5) + 3; local_float += (4 < 4.5) + 3.5; return 0; } ```...