c tag

1304 questions


1 answers
68 views
0
Synchronization of files with Chinese characters in their names fails on rsync

c:\Documents contains the file name written in Chinese characters.If you run the script below, REM Set CYGWIN variable to 'nontsec'. That makes sure that permissionsREM on your windows machine are not...

1 years ago

1 answers
81 views
0
Video Recognition Questions Using Darknet yolov2

I'm a beginner trying to recognize videos.The environment uses Ubuntu 16.04 LTS.I installed CUDA, OpenCV, and Darknet, respectively, and ran the code with mp4 files, but I got an error.Is there any so...

1 years ago

1 answers
127 views
0
The GCC compiler has an error even though the path is passing.

Here's the program.#include<stdio.h> int main(void){ printf(Hello world!); return 0;}  The error was long, so I put it here.https://pastebin.com/hbZcTR4tIt's not that I don't have a header file...

1 years ago

2 answers
39 views
0
Here's the question in the while statement.

#include<stdio.h>main(){ charc='\0'; char prevletter; int wordnum; int word_in; while(1) { wordnum = 0; word_in=1; previewer='\0'; printf(Please enter a string:); while(1) { c=getchar(); if(c=='...

c
1 years ago

1 answers
113 views
0
Error when building with objective-carm64 configuration changed.

Currently, there is a program that reads barcodes and updates data in kinton.Because the app is no longer running on iOS 11, Architectures was a 32-bit application of armv7, so when I changed Architec...

1 years ago

1 answers
122 views
0
Unrecognized selector sent to instance when calling NSManagedObject subclass self-made method

Xcode Version 8.1(8B62) DeploymentTarget iOS 8.4We are creating a process to add data to Core Data.The Xcode feature automatically generated subclasses and added self-made methods.//Media+CoreDataClas...

1 years ago

1 answers
48 views
0
About Linuxmint's C Language Development Environment [Closed]

Do you want to improve this question?Edit your post to clarify the issue you are trying to resolve by adding details.Closed 5 years ago.5 years agoToday, I want to download Linux mint and create a dev...

1 years ago

2 answers
87 views
0
Can object-oriented in C language?

The word feeling structure came out, but I didn't really understand it.For example, what happens if I use C to represent Ruby's code below?class HogeModule def hoge endendclass HogeClass include Hoge...

1 years ago

1 answers
36 views
0
Curl reads the page and displays the source.

Let me ask you a question. Thank you.I want to read and output web pages using CURL in C language, but it doesn't work well.Here's the code.#include stdio.h# include stdlib.h# include string.h# includ...

c
1 years ago

4 answers
134 views
0
When compiling with c99 option in TDM-GCC 5.1.0, printf %lf output is different than expected

If you compile TDM-GCC 5.1.0 with c99 as shown in gcc-std=c99-pedantic test.c, the output of %lf will be 0.0000.Source code of interest:#include<stdio.h>int main(void){ double v=3.1415926; print...

1 years ago
« - 13 - »

© 2024 OneMinuteCode. All rights reserved.