Posts by Kelvin Huggies • 17 points
6 posts
-
0
votes0
answers225
viewsQ: Insert at the beginning of a circular row
I am working on a circular queue program where I want to implement a "queue break" function, where the user inserts a number and this number should be inserted in the queue spaces prior to f.com.…
-
0
votes0
answers48
viewsQ: Error in C list of structures
I’m working on a list of structures code, where I have a structure called Cad that contains the registration fields, name and salary. And a list containing a field of type struct Cad that stores the…
-
0
votes1
answer181
viewsQ: Python strip() function malfunction
I have a list in a file, where each line has a user agent (with " at the beginning and end of each line), which is used in a later part of a program, to perform automated tests using Selenium. When…
-
0
votes1
answer297
viewsQ: String check inside a C function
Greetings! I’m creating a C program where the user can change the state of some sensor by typing the sensor name and 1 or 0 to change the state of the sensor, being 1 for on and 0 for off. However,…
-
0
votes2
answers288
viewsQ: How do I make iframe "clickable" anywhere on the page?
Assuming I have a youtube video in an iframe on my website, how would it be possible to play the iframe by clicking anywhere in the body of the page without having the iframe take over the entire…
-
1
votes1
answer121
viewsQ: Code matching verification on a vector within a C struct
next, I created a struct struct eventos { int codigo; char data[11]; char atracao[50]; int ingresso; float valoring; }; And then I created a vector that way struct eventos ficha[5]; My goal is to…