en
Feedback
NusurTech 2 ©️

NusurTech 2 ©️

Open in Telegram

📈 Analytical overview of Telegram channel NusurTech 2 ©️

Channel NusurTech 2 ©️ (@programmer_tech) in the Arabic language segment is an active participant. Currently, the community unites 12 583 subscribers, ranking 9 937 in the Technologies & Applications category and 9 617 in the Iraq region.

📊 Audience metrics and dynamics

Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 12 583 subscribers.

According to the latest data from 27 July, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -170 over the last 30 days and by -7 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 1.80%. Within the first 24 hours after publication, content typically collects 0.55% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 227 views. Within the first day, a publication typically gains 69 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 1.
  • Thematic interests: Content is focused on key topics such as بَيَان, أَدَاة, تَحلِيل, ضَغط, إِنشَاء.

📝 Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
حسابي تويتر https://twitter.com/MhamadAlush0997

Thanks to the high frequency of updates (latest data received on 28 July, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.

12 583
Subscribers
-724 hours
-357 days
-17030 days
Posts Archive
Repost from Muhammad Alush
‏⚡️ أداة #OSINT للبحث عن حسابات Instagram حسب الاسم او البريد الإلكتروني او رقم الهاتف رابط الأداة 👇👇 https://github.com/0x
‏⚡️ أداة #OSINT للبحث عن حسابات Instagram حسب الاسم او البريد الإلكتروني او رقم الهاتف رابط الأداة 👇👇 https://github.com/0x0be/yesitsme 〰️➖➖➖➖➖➖〰️ t.me/MuhammadAlush0997 تابعني على : Telegram | instagram | facebook | Twitter | YouTube

.

photo content

★ تعليق لعدة اسطر : ويتم ذلك عن طريقة كتابة علامة البداية */ ثم التعليق ثم علامة نهاية التعليق /*

photo content

★ التعليقات في لغة البرمجة ++C التعلقيات هي كلمات او جمل او حتى اسطر لا يتم تنفيذها من قبل مترجم اللغة والفائدة منها ترك توضيح للكود طرق كتابة التعليقات توجد طريقتين لكتابة التعليقات في لغة البرمجة ++C تعليق لسطر واحد : ويتم ذلك عن طريقة كتابة العلامة // قبل التعليق

#include <iostream> int main() { std::cout << "Hello world!" << std::endl; // مكان وجود هذا الأمر C++ حتى نحدد لمترجم لغة cout قبل كلمة std:: لاحظ أننا أضفنا return 0; }

لماذا أجد الأمر using namespace std; موضوع ضمن كود المشروع إذا لم يكن وجوده إجبارياً؟ في البداية هذا السطر معناه أنك تريد تضمين الأشياء الموجودة بداخل المكتبة std بشكل مباشر في المشروع. في حال أردت إزالة هذا السطر ستكون مجبر على تحديد إسم المكتبة التي تستخدم منها الأمر cout و cin و غيرها من الأوامر التي سنتعلمها في دروس لاحقة. الآن سيكون شكل الكود كالتالي في حال أردت إزالة الأمر using namespace std; منه.

#include <iostream> using namespace std; int main() { cout << "Hello world!" << endl; // نستخدمه لطباعة أي نص نريد للمستخدم لكن لا تشغل بالك به الآن cout << الأمر return 0; }

فائدة السطر using namespace std; عند إنشاء أي مشروع جديد تلاحظ في الملف main.cpp أنه يوجد الأمر using namespace std; في السطر الثالث كالتالي.

◐ الكود الذي يتنفذ مباشرةً عند تشغيل البرنامج هو الكود الذي نكتبه بداخل حدود الدالة main() و قبل الأمر return 0.

#include <iostream> int main() { // هنا يجب أن تضع الأوامر التي ستتنفذ عند تشغيل البرنامج return 0; }

★ الشكل العام لأي برنامج مكتوب بلغة C++ الملف الأساسي في المشروع يجب أن يكون شكله كالتالي.

photo content

10. بعد تشغيل البرنامج سيفتح موجه الأمر (و الذي يسمى CMD أو Console) و يظهر بداخله نتيجة التشغيل كالتالي.

photo content

9. لتشغيل هذا البرنامج و الذي سيعرض لك فقط جملة "Hello world!" أنقر على الزر Build and run كالتالي.

photo content

8. لرؤية الملف الأساسي في المشروع و الذي يمكنك كتابة الكود بداخله, إفتح المجلد Sources ثم أنقر على الملف main.cpp كالتالي.