ما این چنل رو ۲ بار تا الان باختیم.
ولی این سری دوباره میایم بالا و باختی وجود نداره.
❤🔥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
Modern_C++_for_Absolute_Beginners_A_Friendly_Introduction_to_C++.pdf
3 MB
Modern C++ for Absolute beginners.
#programming #cpp #ebooks
@tCafeLinux
❤6
Please open Telegram to view this post
VIEW IN TELEGRAM
Telegram
Cafè Linux
از این کانال حمایت کنید تا بتواند به قابلیتهای اضافی دسترسی پیدا کند.
Cafè Linux
Recorded the next video. Uploading... 🔼 #pointers #cprogramming
ری اکشن رو کمتر کنید 🗿
Please open Telegram to view this post
VIEW IN TELEGRAM
🫡14❤4🤡2
تا حالا سیزده بار آپلود ویدیو ترکیده،
اینترنت ایران بی نظیره، محشره.
اینترنت ایران بی نظیره، محشره.
🤣12 3🤝1
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
Telegram
Cafè Linux Chat
@TCafeLinux Chatroom.
whoami: @firstTarokh -
🕷️
whoami: @firstTarokh -
🕷️
Cafè Linux
int first = 34; int* ptr = first; *ptr = 54; printf("%d\n", first);
Will this code execute ?
Anonymous Quiz
41%
Yes
37%
No - Compile Error
22%
Yes - Undefined Behaviour
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++;
}
}
Cafè Linux
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++; } }
What is the output of this code ? 😍
Anonymous Quiz
12%
1, 2, 4
36%
1, 2, 3, 4, 5
36%
Compiler Error
7%
NULL
10%
0
int main() {
int nums[] = {1, 2, 3, 4, 5};
char* ptr = nums;
printf("%d ", *(ptr++));
return 0;
}