Posts by Adriel Henrique Fonseca • 11 points
1 post
-
0
votes1
answer35
viewsQ: Can someone help me? I need to write a "reverse" function that reads the inverse of the vector using pointers. Example: typed 123, printed 321
#include <stdio.h> #include <stdlib.h> void inverte (int *original, unsigned int qtd, int *invertido){ } int main() { int qtd; int…