Skip to content

Instantly share code, notes, and snippets.

View Niltonguerra's full-sized avatar
😁
for whatever you need

Nilton Dionisio Guerra Niltonguerra

😁
for whatever you need
View GitHub Profile
@marcoscastro
marcoscastro / lista_encadeada.cpp
Last active May 10, 2026 20:16
Curso C++ para iniciantes - Aula 49 - Lista encadeada - Parte I
#include <iostream>
using namespace std;
// classe No
class No
{
private:
int v;
No* prox;