Posts by Igor Santos • 63 points
3 posts
-
0
votes1
answer103
viewsA: Include spaces when reading C strings
Try using %[ n]s, for example: In the format expression, instead of using %51s for "string", use %51[ n]s.
-
4
votes2
answers443
viewsQ: What happens when we assign a float value to a double variable?
class Test { public static void main (String[] args){ double pi = 3.1415f; System.out.println(pi); } } When compiling and executing the above code, I got the return: 3.1414999961853027 This is not a…
javaasked Igor Santos 63 -
2
votes2
answers691
viewsA: What is the correct tag for grouping elements into an aside
That is exactly the purpose of tag aside, can use without fear! Generally, for this type of structure I would use the 4 tags: header / Section / aside / footer to group, respectively: header / body…