Posts by Lucas Henrique • 61 points
3 posts
-
4
votes1
answer106
viewsQ: What is the difference between align-items and align-content?
Is there any difference between the align-items and the align-content?
-
-1
votes1
answer29
viewsQ: Problems with assigning values from one vector to another, using malloc
I’m trying to make a program that reads a certain amount of values and inserts it into a vector that uses memory allocation. After that I created two more vectors (in the same way as the previous…
-
2
votes1
answer56
viewsQ: I have trouble printing the output of a string array
Code: #include <stdio.h> #include <string.h> int main() { int i, j, k; char nomes[10][99]; for (j = 0; j < 2; j++) { printf("\nTurma %d:\n", j+1); for (i = 0; i < 10; i++) {…