Posts by Nuck • 35 points
6 posts
-
1
votes5
answers7541
viewsA: Is programming for iOS on a virtual machine feasible?
If you just create a VM and within it use a development application, it will work normally but possibly duplicity error may occur if depending on the development platform you choose you have to…
-
0
votes1
answer439
viewsQ: How to Fill In My Fields with Data Selected by Picker and Update Data - React Native
How can I make so that when the "title" of the task is selected through the Picker it fills my other fields belonging to this task and can update my data? thanks for your help ;) export default…
-
0
votes1
answer511
viewsQ: How popular a Database Data Picker (Firebase) - React Native
I’m trying to popular this Picker with BD data (for when the person wants to delete, she choose by title), but it n fills in, and I don’t know if I’m doing it right. thanks for the help! :) export…
-
0
votes3
answers69
viewsQ: Add items to the beginning of a vector without affecting existing values
How to include 3 numbers at the beginning of this vector without affecting the previous numbers? I’m trying to do it this way: int main() { int v[30]; int i,x; for(i=0; i < 15; i++) {…
-
0
votes1
answer51
viewsQ: Needing Help in Vector C Exercises
Why aren’t you showing the 15 numbers? And how to include 3 numbers at the beginning of this vector? int main() { int v[30]; int i,x; for(i=0; i < 15; i++) { printf("Digite 15 numeros");…
-
1
votes1
answer78
viewsQ: Delete Oracle - Web Api
I’m trying to make this springboot code, become a code in Webapi @RequestMapping("/deletarEvento") public String deletarEvento(long codigo) { Evento evento = er.findByCodigo(codigo);…