Posts by ISABELA • 103 points
4 posts
-
4
votes2
answers106
viewsQ: Function with a pointer?
Enunciation: A student’s grade is calculated from three grades awarded from 0 to 10 respectively to laboratory, a bimonthly evaluation and a final examination. The average three notes mentioned…
-
1
votes0
answers30
viewsQ: conditional within the if?
I don’t know if I’m crazy kkkk but I think I remember seeing simple conditionals inside the printf. However, I don’t remember how it does. tipl, he does the same thing as this: if (xxx)…
-
4
votes2
answers522
viewsQ: Dynamic allocation of vectors
Follows the statement: Make a program that reads keyboard numbers and store them on one dynamically allocated array. The user will type in a sequence of numbers, no quantity limit. The numbers will…
-
0
votes1
answer120
viewsQ: Using a pointer can make my code faster?
I was told that if I work using pointers the program will be faster. If instead of using index to traverse a vector I use the pointer, it looks better?