├── README.md ├── vscdebugc ├── .vscode │ ├── launch.json │ └── tasks.json ├── Makefile ├── README.md └── hello.c └── wiki-images ├── cypher-disbelief.jpg ├── hackerrank_howto_thumb.png └── repo-fork-sync.svg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/CS-Wiki/HEAD/README.md -------------------------------------------------------------------------------- /vscdebugc/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/CS-Wiki/HEAD/vscdebugc/.vscode/launch.json -------------------------------------------------------------------------------- /vscdebugc/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/CS-Wiki/HEAD/vscdebugc/.vscode/tasks.json -------------------------------------------------------------------------------- /vscdebugc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/CS-Wiki/HEAD/vscdebugc/Makefile -------------------------------------------------------------------------------- /vscdebugc/README.md: -------------------------------------------------------------------------------- 1 | # C Debugging with VS Code 2 | 3 | Example for the wiki. 4 | -------------------------------------------------------------------------------- /vscdebugc/hello.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) 4 | { 5 | printf("Hello, world!\n"); 6 | 7 | return 0; 8 | } -------------------------------------------------------------------------------- /wiki-images/cypher-disbelief.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/CS-Wiki/HEAD/wiki-images/cypher-disbelief.jpg -------------------------------------------------------------------------------- /wiki-images/hackerrank_howto_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/CS-Wiki/HEAD/wiki-images/hackerrank_howto_thumb.png -------------------------------------------------------------------------------- /wiki-images/repo-fork-sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bloominstituteoftechnology/CS-Wiki/HEAD/wiki-images/repo-fork-sync.svg --------------------------------------------------------------------------------