-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.txt
More file actions
37 lines (35 loc) · 1.73 KB
/
input.txt
File metadata and controls
37 lines (35 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
5 main.c:9:34: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘double’ [-Wformat=]
9 main.c:10:24: warning: ‘return’ with a value, in function returning void
19 main.c:17:17: warning: implicit declaration of function ‘pthread_create’ [-Wimplicit-function-declaration]
22 main.c:18:17: warning: implicit declaration of function ‘pthread_join’ [-Wimplicit-function-declaration]
25 main.c:20:17: warning: implicit declaration of function ‘pthread_exit’ [-Wimplicit-function-declaration]
28 main.c:22:9: warning: implicit declaration of function ‘exit’ [-Wimplicit-function-declaration]
31 main.c:22:9: warning: incompatible implicit declaration of built-in function ‘exit’
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug TAnh",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}\\function_return\\src\\a.exe",
"args": [ "${env:PATH}" ],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\Program Files (x86)\\mingw-w64\\i686-8.1.0-posix-dwarf-rt_v6-rev0\\mingw32\\bin\\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
}
]
}