Skip to content

Instantly share code, notes, and snippets.

View AdrianCert's full-sized avatar
🎯
Focusing

Adrian Valentin Panaintescu AdrianCert

🎯
Focusing
View GitHub Profile
@AdrianCert
AdrianCert / achievements.svg
Last active September 3, 2025 03:15
github-stats
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@AdrianCert
AdrianCert / ACSO_funtion.cpp
Last active January 8, 2024 14:42
ACSO fuctions: transcript between c and asm
/**
* @brief ACSO fuctions: transcript between c and asm
*
* @copyright 2020 ACSO transcript
* @author Adrian Panaintescu <adrian.cert@gmail.com>
*
* @details Simple functions written in cpp and "asm" organized on namespace, being available both variants as language
*
* @file
*
#include <iostream>
#include <cstdlib>
class Node
{
public:
Node* next;
int data;
};