visual-studio tag

144 questions


1 answers
117 views
0
How to debug command-line parameters in Visual Studio

I'm making a command line application with BIS C++I can't find a way to debug it because I got an argument from the command line no matter how much I look for itI'm just using exe file to run it, but ...


1 answers
104 views
0
When a Form_Closed event occurs, there is a phenomenon that it is hidden by pressing Yes or No in the message box.

if (MessageBox.Show (Do you want to exit?, Information, MessageBoxButtons.YesNo) == DialogResult.Yes) { Application.Exit(); }I wrote the code like above.Naturally, when No is called, I thought there w...

2 years ago

1 answers
38 views
0
No instance of constructor matching C++ argument list.

#include <iostream>#include <vector>#include <string>#include <list>#include <algorithm>using namespace std;enum Menu { continent_search = 1, hwak, die, wanchi, EXIT };en...

2 years ago

1 answers
47 views
0
How to delete html file strings in a folder in bulk

I'm thinking about implementing it with Python in all html files within a particular folderI want to remove all strings between <script~~~/script>ㅠ

2 years ago

2 answers
40 views
0
Question about the output of the file input/output function

File Input/Output Function Question Hello, I'm taking the liberty of asking questions to others first The program is to input students' information through the file input/output function and get total...

2 years ago

1 answers
44 views
0
It says 'dataIn was nullptr'.

QUEUE* Node = createQueue();int* dataIn;int* dataOut;void BreadthFirstprint(Tree* tree) { if (tree) { *dataIn = tree->data; enqueue(Node, &dataIn); BreadthFirstprint(tree->left); Breadth...

2 years ago

1 answers
89 views
0
How do I print out the program?

1) Initialize number 2 for integer variable num 2) Perform shift operation on num variable 3) 'The result of 1 shift operation of 2 is 4' output 4) Perform shift operation on num variable 5) '2 is shi...

2 years ago

1 answers
100 views
0
Is there an error?

I don't understand the error, so I'm asking you a question


1 answers
94 views
0
C Unusual result values for rows/columns in a rudimentary two-dimensional array

After making a two-dimensional array using random numbers,A program that outputs an array in a two-dimensional table after obtaining the sum of each row and each column.But if you compare the table wi...

2 years ago

1 answers
52 views
0
I need scanf_s identifier

#include <stdio.h>void get_sum_diff(int x, int y, int* p_sum, int* p_diff);int main(void){ int x; int y; int r, s; printf(Enter an integer); scanf_s(%d %d, &x, &y); void get_sum_diff(x,...

2 years ago
« - 14 - »

© 2024 OneMinuteCode. All rights reserved.