File size: 1,049 Bytes
2dfd5c5
 
143cf60
 
 
 
 
 
 
 
2dfd5c5
8914e05
 
 
f1afccc
 
5f1b1de
ee57906
5f1b1de
 
 
 
 
 
 
b873dce
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
---
license: apache-2.0
language:
- en
tags:
- code
task_categories:
- question-answering
size_categories:
- 1K<n<10K
---

PS: More data (40k) can be found here [Mxode/StackOverflow-QA-C-Language-40k](https://huggingface.co/datasets/Mxode/StackOverflow-QA-C-Language-40k).

---

This is a collection of ~5000 QA's in **C Language** from StackOverflow. The data has been initially cleaned, and each response is with **Accepted Answer**. 
All data is **<500** in length.

The questions and answers were organized into a **one-line** format. A sample format is shown below:
```json
{
    "question": "```\nFILE* file = fopen(some file)\n\npcap_t* pd = pcap_fopen_offline(file)\n\npcap_close(pd)\n\nfclose(file)\n```\n\nThis code occurs double free error.\n\nCould you explain about this happening?\n\nMy Guess is that pd and file pointers are sharing some datas.\n",
    "answer": "As the documentation says, thepcap_closefunction closes the files associated with thepcap_tstructure passed to it. Closing the file again withfcloseis an error.\n"
}
```