Posts by Nego Well • 51 points
3 posts
-
0
votes3
answers314
viewsQ: unite 2 vectors (a[10], b[10]) into a vector c[20]
How do I join two vectors A[10] and B[10], to create a vector C with 20 elements. #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> int main(){ int…
-
1
votes1
answer276
viewsQ: UX interface in Delphi
I work as UX designer, now I have to develop a good interface for the system in Delphi of the company. I can make animations and changes, like I did on the web?
-
0
votes2
answers1857
viewsQ: Variable percentage in c
I have a problem with a simple code, I want to know how to calculate the percentage of a value. EX: 1500 + 15% (in this case I know it is value = value*0.15) However, the percentage value must be a…