Cafè Linux – Telegram
Cafè Linux
580 subscribers
14 photos
5 videos
31 files
31 links
👾 ( Cafe Linux - C, Linux, BASH and so on )

🎥 YT: https://www.youtube.com/@TheLinuxCafe

( "The quieter you become, the more you are able to hear" )

Buy me a Coffee : { 0xbc8e52af7b46461b8076085Be771F465E26A9Dfd } - BEP20/USDT

whoami: @firstTarokh
Download Telegram
SOME NOTES ON CONSTANTS


const int x = 34;
// you cannot change the value of x.


// Cannot modify what p points to
// But we can modify p itself
const int* p = &x;
p++; // This is fine
*p = 34; // BUG


// These two lines are the same in C:
const int* ptr;
int const* ptr;
// :))


int* const other = &x;
// This way we can change what the pointer points to, But we cannot change the pointer itself:
*other = 34; // Valid!
other++; // BUG
👍31
const int a = 20;
int *ptr = &a;
*ptr = 40;
👍1
@tcafelinux
مردم راهش رو یاد گرفتن -.-
😁11
Cafè Linux
What is the result ?
جواب این برگ های شمارو خواهد ریخت،
البته اونایی که زدن جواب رو فهمیدن طبیعتا.

حالا توضیح میدم درموردش 🌞
Cafè Linux pinned «https://youtu.be/bsejZACLN7M»
Cafè Linux
https://youtu.be/bsejZACLN7M
An intro to what strings are and how they work in C.
Three different ways to define a String in C.
How to modify a string, and how pointer strings are read-only...


#notice @tCafeLinux
4🤝1
دوستان جدید همه ویدیوها تو یوتیوب هست.
در های پیوی من هم به روی همه بازه.
و اینکه ویدیو ها کوتاه کوتاه رکورد میشه که خسته نشید و اینکه با سرعت بالاتر بشه ویدیو رکورد کرد.
تشکر از همه
55💯2
https://news.1rj.ru/str/+fVJ4fVFeyhI0OWY0

گروه کانال، دوست داشتید بیاید برای ارتباط راحت تر و بحث درمورد مباحث و اینجور چیزها.
2
cpp_document.pdf
950.3 KB
An Introduction To C++
#tCafeLinux @TCafeLinux
👾
4
Cafè Linux pinned «https://youtu.be/66kafRjkKnM»
Cafè Linux
https://youtu.be/66kafRjkKnM
In this video we talked about:
- strlen, sizeof, strcpy
- pointers on strings.

And so on

اینجا درمورد فانکشن های sizeof, strlen, strcpy
حرف زدیم و مثال زدیم.

درمورد این حرف زدیم که چجوری میشه با sizeof طول array رو پیدا کرد با هر دیتاتایپی
درمورد ارتباط پوینترها با استرینگ ها بیشتر حرف زدیم.

@tCafeLinux #NOTICE
3
💯5👍1
Cafè Linux
Voice message
سلام همگی، این وویس درمورد دوره C و ویدیوها

و اینکه ممنون از ONION بابت استارز
57
This media is not supported in your browser
VIEW IN TELEGRAM
💯41
Cafè Linux
https://youtu.be/66kafRjkKnM
حتی اگه 20 دقیقه جوک تعریف میکردم بیشتر از دو تا ری اکشن نیاز داشت -.-
#ادمین_ناامید 🩼
😢9💔3🤣1😭1