code tag

445 questions


1 answers
64 views
0
Compilation error related to WinMain

Compiling the code below with the visual studio code results in an error.//////////// LinkedList.h ////////////#pragma oncetypedef struct LINKEDLIST { Node* head; Node* cur; Node* before; int numOfDat...

2 years ago

1 answers
31 views
0
It's a question about code c

#include<stdio.h>#include<string.h>#include<stdlib.h>int main() { char* *szdata; int count = 0, maxlenth = 0; scanf(%d*c, &count); szdata = (char**)malloc(sizeof(char*)*count); s...

2 years ago

1 answers
103 views
0
I'd like to change the .ipynb code written in jupyter notebook to .py.

I am studying through a book called 'Deep Learning that I know and weave with Python blade coding'.What I want to ask is how to transfer the code written on the jupyter notebook to the py code.In this...


1 answers
88 views
0
Please tell me the cause of the Android putExtra code execution error

Blockquote int to save the value of) change and there was an error in the process by which you store the value and activity to the value of an App is forced exit in the process I think. I don't know t...

2 years ago

2 answers
136 views
0
I'd like to convert Unicode into Korean from the response object I brought to the request module.

import requestsurl = 'any_address'data_payload = {'1', '1'}res = requests.post(url, data=data_payload)txt = res.textprint(res.text)With this source code, res is the object 'requests.models.Response' e...

2 years ago

1 answers
122 views
0
Problems with Korean conversion when converting ts -> js in typescript (especially when using 'template string')

While following the Gulp section on the TypeScript home page.// File name: src/main.tsfunction hello(compiler: string) { console.log(`Hello from ${compiler}`);}hello('TypeScript');On the example code,...


1 answers
77 views
0
Visual studio code C/C++ compilation error C1034: iostream: No include path set.

To create C++ with VSCode, install the Visual C++ build tool in Visual studio build tools, set environment variables, and press Build> Executing task: cl.exe /Zi /EHsc /Fe: c:\Users\Administrator\D...


1 answers
57 views
0
I have a question regarding the problem of installing Pandas in Python virtual environment.

I installed Pandas in Python virtual environment folder, but I wonder what the problem is with the error.cryingTerminal error

2 years ago

1 answers
65 views
0
Enter numeric data using a for statement in the C language string

I'm a beginner in C language.You want to store data in each string from a string through an array and output it.You want to enter each branch's revenue into an array and calculate the total and averag...

2 years ago

1 answers
34 views
0
And there was no one (?

1) Output: Before alignment [A, B, C, D, E, F, G, H, I, J][C, D, E, F, G, H, I, J, A][E, F, G, H, I, J, A, C][G, H, I, J, A, C, E][I, J, A, C, E, G][A, C, E, G, I][E, G, I, A][I, A, E][E, I][E] #<-...

2 years ago
« - 43 - »

© 2024 OneMinuteCode. All rights reserved.