Posts by Gustavo Viana • 53 points
2 posts
-
0
votes1
answer16507
viewsQ: How to print a string from a string array in C?
I have a string vector(palavras[x][y]), I can read every word that will be an element of the vector, but I cannot print any of these stored words. printf("%s",palavras[a][b]), doesn’t work. Here are…
-
4
votes1
answer3070
viewsQ: VBA+Excel. Code error (incompatible Byref argument type) in Function
The following code: Sub segundograu() Dim a, b, c, delta, raiz1, raiz2 As Double a = Range("B3").Value b = Range("E3").Value c = Range("H3").Value delta = b ^ 2 - 4 * a * c Range("E5").Value = delta…