Kernel Kudos
🕷 C programming course | Day 03 | KernelKudos 🕸 what is a character array 🕸 what is an index 🕸 how to change the data of each index 🕸 how to ruin memory data with changing out-of-bounds data − آرایه کاراکتر ها چی هستن و چجوری تعریف میشن − ایندکس یا اندیس…
برای پرینت کردن کامل یک character array از کدوم format specifier باید استفاده کنیم
Anonymous Quiz
11%
%x
55%
%s
7%
%o
27%
%c
❤2
Kernel Kudos
🕷 C programming course | Day 03 | KernelKudos 🕸 what is a character array 🕸 what is an index 🕸 how to change the data of each index 🕸 how to ruin memory data with changing out-of-bounds data − آرایه کاراکتر ها چی هستن و چجوری تعریف میشن − ایندکس یا اندیس…
به چه علت برای نگه داشتن یک استرینگ با شش کاراکتر - یک آرایه ۷ ایندکسی براش در نظر میگیریم.
Anonymous Quiz
72%
به علت وجود نال کاراکتر \0
16%
جلوگیری از خطاهای احتمالی کامپایلر
12%
مشکل روانی داریم
😁4🥴1
#notice
فردا ویدیو بعدی رکورد و آپلود میشه،
کوئیز ها تا هفته دیگه باز میمونن.
🍜 C programming course - Day 04
🍜 ---- Telegram Channel ----
- More about arrays
- How to define and use arrays
- wrote a program using Integer arrays that counts white spaces, letters and digits that a user enters.
دوستان این ویدیو مکمل ویدیو قبل هست،
بیشتر درمورد ارایه ها گفتم،
و یکی از برنامه های نوشته شده در کتاب رو با استفاده از آرایه ها بررسی کردیم.
🍜 ---- Telegram Channel ----
Media is too big
VIEW IN TELEGRAM
❤12😍3👍2⚡1
Kernel Kudos
🍜 C programming course - Day 04 - More about arrays - How to define and use arrays - wrote a program using Integer arrays that counts white spaces, letters and digits that a user enters. دوستان این ویدیو مکمل ویدیو قبل هست، بیشتر درمورد ارایه ها گفتم، و…
How to directly define an array in C
Anonymous Quiz
15%
char arr[3] = (1, 2, 3);
12%
char arr[3] = new Array('y', 'f', 'g');
8%
char arr[3]{'1', '2', '3'};
64%
char arr[3] = {'a', 'b', 'c'};
Kernel Kudos
🍜 C programming course - Day 04 - More about arrays - How to define and use arrays - wrote a program using Integer arrays that counts white spaces, letters and digits that a user enters. دوستان این ویدیو مکمل ویدیو قبل هست، بیشتر درمورد ارایه ها گفتم، و…
برای شمردن تعداد tab های وارد شده از کدوم کاراکتر استفاده کنم
Anonymous Quiz
10%
'\n'*4
20%
' ' + ' ' + ' ' + ' '
57%
'\t'
13%
''\t\t''
Kernel Kudos
🍜 C programming course - Day 04 - More about arrays - How to define and use arrays - wrote a program using Integer arrays that counts white spaces, letters and digits that a user enters. دوستان این ویدیو مکمل ویدیو قبل هست، بیشتر درمورد ارایه ها گفتم، و…
معادل '0' - '5' در جدول ASCII کدام عبارت است
Anonymous Quiz
6%
45 - 5 -> 40
63%
35 - 30 -> 5
14%
55 + 5 -> 60
17%
null
Kernel Kudos
معادل '0' - '5' در جدول ASCII کدام عبارت است
درواقع اعداد مبنای ۱۶ هستند
hexadecimal
Kernel Kudos
🍜 C programming course - Day 04 - More about arrays - How to define and use arrays - wrote a program using Integer arrays that counts white spaces, letters and digits that a user enters. دوستان این ویدیو مکمل ویدیو قبل هست، بیشتر درمورد ارایه ها گفتم، و…
what is a "CORE DUMP" ?
Anonymous Quiz
15%
a simple error message
62%
a fatal exception in a program
23%
non of above
Using Llama 3 for Building AI Agents | by Ransaka Ravihara | Jul, 2024
https://towardsdatascience.com/using-llama-3-for-building-ai-agents-7e74f79d1ccc
https://towardsdatascience.com/using-llama-3-for-building-ai-agents-7e74f79d1ccc
Towards Data Science
Using Llama 3 for Building AI Agents | Towards Data Science
Comprehensive guide to building AI Agents with Llama 3 function calling capabilities.
Write_Great_Code,_Volume_2,_2nd_Edition_Thinking_Low_Level,_Writing.pdf
4.7 MB
Write Great Code, VOL 2
-
Thinking Low Level
Today's programming languages offer productivity and portability, but also make it easy to write sloppy code that isn't optimized for a compiler. Thinking Low-Level, Writing High-Level will teach you to craft source code that results in good machine code once it's run through a compiler.
You'll learn:
• How to analyze the output of a compiler to verify that your code generates good machine code
• The types of machine code statements that compilers generate for common control structures, so you can choose the best statements when writing HLL code
• Enough assembly language to read compiler output
• How compilers convert various constant and variable objects into machine data
With an understanding of how compilers work, you'll be able to write source code that they can translate into elegant machine code.
NEW TO THIS EDITION, COVERAGE OF:
• Programming languages like Swift and Java
• Code generation on modern 64-bit CPUs