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
Cafè Linux pinned «https://youtu.be/HTAy1pYw4Uo»
🤝5👍1
!!Let's Talk about Pointers!!
#pointers #part1 @tCafeLinux
❤‍🔥8
Cafè Linux pinned «https://youtu.be/HTzOuOXreBY»
ما این چنل رو ۲ بار تا الان باختیم.
ولی این سری دوباره میایم بالا و باختی وجود نداره.
❤‍🔥10🔥2🥱1💯1
Cafè Linux
https://youtu.be/HTzOuOXreBY
This video talks about:
- Pointers in C
- How to create pointers
- How to find variable addresses
- How to change a value in memory using pointers.
and so on... 👾
8👌1💯1
Recorded the next video.
Uploading... 🔼


#pointers #cprogramming
Please open Telegram to view this post
VIEW IN TELEGRAM
238🙏1
Cafè Linux
Recorded the next video. Uploading... 🔼 #pointers #cprogramming
ری اکشن رو کمتر کنید 🗿
Please open Telegram to view this post
VIEW IN TELEGRAM
🫡144🤡2
تا حالا سیزده بار آپلود ویدیو ترکیده،
اینترنت ایران بی نظیره، محشره.
🤣123🤝1
Cafè Linux pinned «https://youtu.be/STau6q8mRAU»
https://news.1rj.ru/str/+fVJ4fVFeyhI0OWY0

Join for better communication about Programming and Software development in General! 🧠
Please open Telegram to view this post
VIEW IN TELEGRAM
Quiz Time...
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥2
int first = 34;
int* ptr = first;
*ptr = 54;
printf("%d\n", first);
void main() {
int nums[] = {1, 2, 3, 4, 5};
int size = sizeof(nums)/sizeof(nums[0]);

int* ptr = &nums[0];
int* lptr = &nums[size];


while (ptr < lptr) {
printf("%d\n", *ptr);
ptr++;
}

}
int main() {
int nums[] = {1, 2, 3, 4, 5};
char* ptr = nums;
printf("%d ", *(ptr++));
return 0;
}