You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "GCC হল একটি ফ্রি এবং ওপেন সোর্স কম্পাইলার যা C, C++, Objective-C, Fortran, Go, Rust, D, Pascal, RISC-V ইত্যাদি Laguage গুলিকে Compile করে।",
6
+
"colorPref": "#FFC0CB",
7
+
"contents": [
8
+
{
9
+
"title": "Common Commands",
10
+
"items": [
11
+
{
12
+
"definition": "-o: আউটপুট ফাইলের নাম নির্ধারণ করে।",
13
+
"code": "gcc -o output_file source_file.c"
14
+
},
15
+
{
16
+
"definition": "-c: শুধুমাত্র Source কোডকে অবজেক্ট কোডে কম্পাইল করে।",
17
+
"code": "gcc -c source_file.c"
18
+
},
19
+
{
20
+
"definition": "-S: শুধুমাত্র Source কোডকে অ্যাসেম্বলি কোডে কম্পাইল করে।",
0 commit comments