Skip to content

Instantly share code, notes, and snippets.

@gabrieltavaresmelo
gabrieltavaresmelo / busca_linear.c
Created September 13, 2024 21:52
busca_insert_remove-arrays
// Busca Linear
#include <stdio.h>
#include <stdlib.h>
int buscaLinear(int *arr, int n, int valor) {
for (int i = 0; i < n; i++) {
if (arr[i] == valor)
return i; // Retorna o índice se o valor for encontrado
}