Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
TheAlternative
courses
a9f88eac77e71c7224d406ca3916265b2445b681
a9f88eac77e71c7224d406ca3916265b2445b681
Switch branch/tag
courses
archive
HS19-debugging-on-linux
code
bugtype
ms.c
Find file
Normal view
History
Permalink
ms.c
105 Bytes
Edit
Web IDE
Newer
Older
add debugging on linux
Alexander Schoch
committed
Nov 08, 2019
1
2
3
4
5
6
7
8
#include<stdlib.h>
int
main
(
int
argc
,
char
**
argv
)
{
int
*
p
;
p
=
malloc
(
sizeof
(
int
));
return
0
;
}