Posts by Marcelo Gomes • 1 point
3 posts
-
0
votes1
answer45
viewsA: Interpolated search in C, repeated values in the arrangement
Man, your code seems almost right to me, with few points to be hit: • First, when declaring the function, instead of int vec[5] you should use int *vec, which would hold arrays of any size. Remember…
-
0
votes1
answer103
viewsA: How to increase the value of STEP in the input Range as per bar roll
It seems to me that what you really want is to make a slider with exponentially increasing values, not necessarily change the value of the range step. So, you can take the value actually returned by…
-
-3
votes2
answers111
viewsA: How to make the browser render the <span> with some spaces in the text?
Forget about formatting your code! The right thing is to use CSS. Code is for processing; CSS is for formatting. But, as I know that every programmer is stubborn, if you want much use your code the…