memória

Generate random number without repetition in C

Hello, I am making a memory game in c, and I would like to know how to generate a random number without repetition. I will p ... { matriz[i][j] = (rand()%8)+1; } } } mostrar_mesa(matriz); }

What is the most efficient way to resize bitmaps on Android?

When a device has lower screen resolutions, you need to resize the bitmaps to optimize their display on the display properly. ... t of out of memory errors after resizing a set of small images. What is the most efficient way to resize bitmaps on Android?