Cafè Linux
ویدیوی بعدی به زووودی #notice یه رفراندوم هم میزاریم دوباره، این سری اگه رأی قطعی شد دوره فارسی استارت میخوره از اول، با سرعت بالاتر که حوصلتون سر نره 💙
دوستانی که معتقد هستن من دویست بار تا الان دوره رکورد کردم و پاک کردم لازمه بدونن که کلا 2 بار دوره رکورد شده. و دوره اول پاک شده چون من امکانات لازم برای رکورد نداشتم و کیفیت صدا پایین بوده و این به نظرم اصلا خنده دار نیست.
مورد دوم اینکه من دوره فارسی رو پیشنهاد دادم که یه سری دوستان راحت تر باشن وگرنه دلیلی نداره این همه مطلب رو از اول رکورد کنم.
درکل متشکرم 🌷
❤🔥8🤣2
Cafè Linux pinned «دوستانی که معتقد هستن من دویست بار تا الان دوره رکورد کردم و پاک کردم لازمه بدونن که کلا 2 بار دوره رکورد شده. و دوره اول پاک شده چون من امکانات لازم برای رکورد نداشتم و کیفیت صدا پایین بوده و این به نظرم اصلا خنده دار نیست. مورد دوم اینکه من دوره فارسی رو…»
Linux in Action (David Clinton) (Z-Library).pdf
17 MB
#Linux💻 in Action.
A comprehensive resource for learning Linux and its administration.
#ebook #cafelinux @tcafeLinux
Please open Telegram to view this post
VIEW IN TELEGRAM
❤🔥4
Cafè Linux
از چنل راضی هستید یا نه ؟ -.+
اینو بزنید دوستان. مهمه
تشکر از همه👨💻
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥6
Mastering_Bash_Automate_Daily_Tasks_with_Bash_Giorgio_Zarrelli_Z.pdf
53.8 MB
#BASH cook books.
#cafelinux @tcafeLinux👨💻
Please open Telegram to view this post
VIEW IN TELEGRAM
❤🔥8👍1
https://github.com/Tarokh-Yaghoubi/learning_c.git
Every thing you need to study about C programming is here!
Good Luck!
اینو از پارسال شروع کردم نوشتم
از صفر تا جایی که الان رسیده
مباحث C کاور شده . اسم دایرکتوری ها هم واضح هست. مثال هست با کامنت هایی که نوشته شده و توضیح داده شده خیلی چیزها
کم کم داره بهش اضافه میشه
مباحثی مثل threading و atomics
تا هفته دیگه اینا هم اضافه میشن و کاور میشن.
GitHub
GitHub - Tarokh-Yaghoubi/learning_c: Learning how to program in C
Learning how to program in C. Contribute to Tarokh-Yaghoubi/learning_c development by creating an account on GitHub.
_Bool in C 👨💻
Do we have BOOL in C ?
We do have! and it is widely used in modern embedded projects for better readability, btw many low-level codes still use 0/1 instead of BOOL due to older compiler support, or coding standards.
Since C99:
#cprogramming #notes #boolean @tcafeLinux
Do we have BOOL in C ?
We do have! and it is widely used in modern embedded projects for better readability, btw many low-level codes still use 0/1 instead of BOOL due to older compiler support, or coding standards.
Since C99:
#include <stdbool.h>
bool flag = false;
if (!flag) {...}
bool is a MACRO for _Bool
You can also use _Bool like this:
_Bool flag = false;
#cprogramming #notes #boolean @tcafeLinux
Please open Telegram to view this post
VIEW IN TELEGRAM
Cafè Linux
از چنل راضی هستید یا نه ؟ -.+
دوستان اینو لطفاً انجام بدید 🔥
Please open Telegram to view this post
VIEW IN TELEGRAM
❤🔥3
#include <stdio.h>
int main() {
int arr[] = {10, 20, 30, 40};
int *p = arr;
*(p + 2) = *(p + 1) + 5;
printf("%d\n", arr[2]);
return 0;
}
#include <stdio.h>
int main() {
int x = 5, y = 10;
int *p = &x, *q = &y;
*p = *q;
*q = *p + 2;
printf("%d %d\n", x, y);
return 0;
}
❤🔥2
#include <stdio.h>
int main() {
char str[] = "Hello";
char *p = str;
*(p + 1) = 'a';
printf("%s\n", str);
return 0;
}
bgipc_usl_c_1.pdf
337.1 KB
Unix Interprocess Communication
A brief introduction to unix programming and IPC.
#BEEJ #CPROGRAMMING @TCAFELINUX👩🚀 👩🚀 😈
Please open Telegram to view this post
VIEW IN TELEGRAM