Posts by Gustavo Willian • 1 point
2 posts
-
-2
votes2
answers501
viewsA: How to disable an edit module property in Angular?
The simplest way is to use: this.form.controls['controlname'].disable();
angular-6answered Gustavo Willian 1 -
0
votes3
answers6645
viewsA: Union of two vectors in C
Simple, in the second for you are not adding the variable i, to be clearer to your way of understanding: for(i=0; i<5; i++){ c[i] = a[i]; } for (j=0; j<5; j++){ c[i] = b[j]; i++;//desta forma…