Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
44 views

I created a pivot table like the one in the image. The data part was done this way The pivot representation works for me because for each product, line, or family (iPad->iPad Air->iPad Model), ...
Peter Vogric's user avatar
2 votes
4 answers
162 views

I have simple program to make a point with x and y coords and function to move it. There are three files: main.c structs.h structs.c structs.h Has the definition of structure typedef struct point{ ...
Akramat's user avatar
  • 163
0 votes
2 answers
62 views

I can't seem to find a way to achieve the transition between two different grid structures. The toggle is working fine; I'm simply toggling the class of the divs within the outlining grid-div where ...
Fred Fredrik's user avatar
3 votes
1 answer
146 views

I’m trying to understand the nuances of the restrict keyword in C, particularly how its behavior might differ when applied to a pointer to a structure versus a pointer to a primitive type like int. ...
Alphin Thomas's user avatar
1 vote
1 answer
80 views

I'm trying to implement a queue and for dequeue I've purposely done with an int procedure. What would be possible drawbacks for using an int? int dequeue(queue *q) { int res = 0; // list not empty ...
Ysw's user avatar
  • 21
0 votes
0 answers
41 views

Description: I'm working on a Vue/Nuxt project where we typically create a single component that handles all inputs, their state, validation, and submission to the API. While this approach works, it ...
Romin Manogil's user avatar
0 votes
1 answer
130 views

How to compare table/columns/index/constraints structure across two different environments in oracle without using db link and not having central repository where data files can be stored. We cannot ...
Sonali Salvi's user avatar
-1 votes
1 answer
80 views

I use eclipse to do my java programming, last day i created a java program and i placed the /res folder to the root directory of the project, When i tested the program on eclipse it worked perfectly, ...
iasonas's user avatar
  • 11
0 votes
2 answers
257 views

So when we make a C program we just need one .C file right? We can include additional C files and H files to our main .C file but I'm not sure what the difference between them is. Why would one ...
user2980746's user avatar
4 votes
1 answer
306 views

When I search the internet for design examples how to structure my code, I frequently find setups with main.rs only containing the main function and usages of lib, while lib.rs contains all the actual ...
Skru's user avatar
  • 135
-2 votes
1 answer
104 views

(I'm a Rust newbie coming from a strong C/C++/Java background.) In Rust, I would like to create "enum" like variables that are constant, ideally initialized at compile time. For example, to ...
David Elrod's user avatar
-4 votes
3 answers
177 views

I want to create the list [0, 2, 3, ..., 234] in python, possibly within a row and without listing all numbers explicitly I know that following code works: list1 = [0] for i in range(2,235): list1....
Y H's user avatar
  • 17
-3 votes
1 answer
28 views

public struct player { public int[] PlayerHistory; public Boolean Absent; public player(Boolean b) { PlayerHistory = new int[20]...
Thomas Weston's user avatar
-6 votes
2 answers
103 views

I AM CREATING A SCHOOL MANAGEMENT SYSTEM . WHEN I TRY TO DELETE A STUDENT AFTER ADDING ONE I AM GETTING "malloc(): corrupted top size" ERROR .CANT FIND THE REASON.I AM A BEGINNER , HELP ...
ASHNA A's user avatar
0 votes
1 answer
150 views

I have a table called sports as below I need to append another day's details into the table for red team like below Note: Without unnesting the existing record, just a simple append. Is there any ...
Saravana Kumar's user avatar
1 vote
2 answers
497 views

I need to visualize the CNN model. The example is in the comments. I've tried to use draw_convet (https://github.com/gwding/draw_convnet) but it keeps throwing a list of errors. Could you please help? ...
james's user avatar
  • 177
5 votes
1 answer
301 views

As one probably knows we have such handy clause of MOVE-CORRESPONDING as EXPANDING NESTED TABLES: MOVE-CORRESPONDING: <m_source> TO <m_target> EXPANDING NESTED TABLES. What it basically ...
Suncatcher's user avatar
  • 10.6k
0 votes
1 answer
80 views

I am trying to solve this challenge: Given a non-negative integer represented as a non-empty singly linked list of digits, add one to the integer. You may assume the integer does not contain any ...
Ashu Banna's user avatar
0 votes
1 answer
81 views

Hi I'm looking for a little help here to create a folder structure using PowerShell. Pointing at a root folder [Yearly Structure Folder], im looking for the following structure within this folder. The ...
user24911908's user avatar
1 vote
0 answers
27 views

I hope you guys are well! I am currently working with the MS OLEPS as stated in the title. Here the documentation I'm using : https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-oleps/...
user24642980's user avatar
0 votes
1 answer
78 views

I am trying to print the values within a structure as a table. However, one of the names gets printed out into the wrong 'field'. Here is what I have: #include <iostream> #include <string> ...
rennian's user avatar
-2 votes
4 answers
92 views

I am trying to make 2 variables of structure same across whole array of structures. I am wondering how would you do that as I cant find any clue about what I want to do. I am using C language Here is ...
Ivan Huzjak's user avatar
-1 votes
1 answer
59 views

Sorry for my bad english) I created a dynamic array of structures. This structures contains dynamic array of doubles. When I add the structure, I fill it this way The number of sides and the length of ...
Vladimir_gr's user avatar
2 votes
2 answers
101 views

I created an array of structures data(1).field = 5; data(2).field = 3; data(3).field = -4; ... I would like to plot one of the fields by accessing something like: data(:).field I get the following ...
Mr Robot's user avatar
  • 1,225
2 votes
1 answer
97 views

I'm a beginner in c I've been working on a program in C where using structure which represents students, and variable of structure contains the student's marks. My goal is to input marks for 2 ...
Alsiro Mira's user avatar

1
2 3 4 5
132