en
Feedback
C++

C++

Open in Telegram

گروه آموزش زبان برنامه نویسی سی، سی پلاس پلاس خدمت شما دوستداران گرامی با امید بهره بردن و موفقیت شما همراهان🌹 ممنون که همراه ما میشین و ما رو حمایت میکنین 🌹 https://t.me/ourcpp

Show more
2 130
Subscribers
-224 hours
-57 days
-4730 days
Posts Archive
C++
2 130
معرفی سایت های مختلف برنامه نویسی از بهترین سایت های آموزش ++c : learncpp.com از بهترین سایت های آموزش زبان های برنامه نویسی
معرفی سایت های مختلف برنامه نویسی از بهترین سایت های آموزش ++c : learncpp.com از بهترین سایت های آموزش زبان های برنامه نویسی تحت وب و بعضی از فریمورک های وب: w3schools.com دو وبسایت آموزشی(جزو بهترینان اینام): w3resource.com javatpoint.com پرسش و پاسخ : Stackoverflow.com ➖➖➖➖➖➖ @cppFarsi

C++
2 130
[Forwarded from پایتون (ADMIN)] سلام لینک گروه سی ، سی پلاس پلاس : 👇👇👇👇 https://t.me/ourcpp لینک گروه سی شارپ : 👇👇👇👇 https://t.me/ourcsharpp لینک گروه پایتون : 👇👇👇👇 https://t.me/pygroupp گروه چت : 👇👇👇👇 https://t.me/engineeringcomputerr کانال جزوات و ... 👇👇👇👇 https://t.me/chanelcomputer 👨‍💻👩‍💻

C++
2 130
CLRS

C++
2 130
یک منبع (انگلیسی) کامل جهت کار با Dynamic Memory Allocation در C Doc📚 : Link📎 ➖➖➖➖➖➖ © کانال ما : @cppFarsi

C++
2 130
روی لینک زیر بزنید ببینید چی میاره براتون😍: https://digipostal.ir/rezacard التماسِ دعا❤️🌺!

C++
2 130
وقتی میگن یادگیری سی پلاس پلاس تو یدونه کلیپ😂 ➖➖➖➖➖
وقتی میگن یادگیری سی پلاس پلاس تو یدونه کلیپ😂 ➖➖➖➖➖

C++
2 130
کتاب برنامه نویسی به زبان ++C دایتل و دایتل مترجم : مرتضی صاحب الزمانی ➖➖➖➖➖ @cppFarsi

C++
2 130
سلام دوستان. احتمالا این دوستمون معرف حضورتون هست: int *ptr; این یکی چی؟ : int *(*ptr[8]); این چی؟😁: char (*(*ptr[16])(int, int)) [8]; به این مبحث میگن complicated declarations که یه آموزش خوب براتون میذارم میتونید یاد بگیرید که همچین عباراتی رو بخونید و بنویسید: https://www.geeksforgeeks.org/complicated-declarations-in-c/amp/ حالا یه تمرین براتون میذارم توی کامنت‌ها بنویسید چطور خونده میشه: void (*(*fptr(void(*)(void), int))[8])(void); ➖➖➖➖➖➖ @cppFarsi

C++
2 130
این خیلی خوب بود بزرگوار کل روانشناسی رو زیر سوال برد @SokhaneGayande

C++
2 130
کتاب برنامه نویسی میکروکنترلر 🖥 های 8051 در C و Assembly بشدت کتاب کامل و جامعی هست کلی وقت روی آپلودش گذاشتم واستون ٬ با استفاده ازش و لایک این پست و نظر دادن راجبش ٬ انرژی بدید ❤️ کانال ما : @cppFarsi

C++
2 130
یک آموزش بسیار عالی و رایگان برای برنامه نویسی پردازنده های MCS51 و arm در C و Assembly https://maktabkhooneh.org/course/%D9%85%DB%8C%DA%A9%D8%B1%D9%88%DA%A9%D9%86%D8%AA%D8%B1%D9%84%D8%B1-ARM-mk39/

C++
2 130
Python, C/C++ or C# for development of malware? Any of these languages ​​(and others too) can be used to make a virus, but all are they ideal? but the truth (and deep down we all know) is that not all of them are efficient for such purpose. Python is very powerful, but it is a scripting language and therefore requires the target to have a way to interpret it. So your virus may not even run or come across an extra layer of security. When we talk about C# we also come across a similar situation as it runs on top of .NET Framework. Remembering that Malware Development is an excellent skill for those who work in Red Teams. Never use your knowledge illegally or to harm other people. C/C++, in addition to generating native code, allows easy manipulation of processes and memory. ➖➖➖➖➖ @cppFarsi

C++
2 130
دوستان عزیز اگه مشتاق این هستین که از نکات ، مطالب و... استفاده کنید ،پس حمایت کنید . مرسی 🌹
دوستان عزیز اگه مشتاق این هستین که از نکات ، مطالب و... استفاده کنید ،پس حمایت کنید . مرسی 🌹

C++
2 130
Python developer vs C++ developer @cppFarsi
Python developer vs C++ developer @cppFarsi

C++
2 130
C++_jafarnezhad - hale masale (1).pdf2.01 KB

C++
2 130
C VS C++ C provides malloc() and calloc() functions for dynamic memory allocation, and free() for memory deallocation. VS C++ provides new operator for memory allocation and delete operator for memory de-allocation. -------------------------------------------------------- C structures don't have access modifiers. VS C ++ structures have access modifiers. -------------------------------------------------------- C contains 32 keywords. C does not support function or operator overloading. VS C++ contains 63 keywords. C++ support both function or operator overloading. -------------------------------------------------------- Virtual and friend functions are not supported by C. VS Virtual and friend functions are supported by C++. -------------------------------------------------------- For the development of code, C supports procedural programming. VS C++ is known as hybrid language because C++ supports both procedural and object oriented programming paradigms. -------------------------------------------------------- C does no support polymorphism, encapsulation, and inheritance which means that does not support object oriented programming. VS C++ supports polymorphism, encapsulation, and inheritance because it is an object oriented programming language. -------------------------------------------------------- C in general known as function-driven language. VS C++ is known as object driven language. -------------------------------------------------------- C was developed by Dennis Ritchie between the year 1969 and 1973 at AT&T Bell Labs. VS C++ was developed by Bjarne Stroustrup in 1979.

C++
2 130
why...?
why...?

C++
2 130
سلام ، دوستانی که میخوان ادمین کانال یا گروه بشن به ما اطلاع بدن . شرایط : ۱-سی یا سی پلاس پلاس مسلط باشن ( پاسخ به دوستان ) . ۲-آنلاین بودن . ۳- پست گذاشتن ( طوری نباشه که فقط روزهای اول زیادی فعال باشن 😂 ) . ۴- گذاشتن مطالب علمی و استاندارد مربوط به c و++c . ممنون از شما .