雖然這篇Typedef struct array鄉民發文沒有被收入到精華區:在Typedef struct array這個話題中,我們另外找到其它相關的精選爆讚文章
[爆卦]Typedef struct array是什麼?優點缺點精華區懶人包
你可能也想看看
搜尋相關網站
-
#1Assigning Array of Structs to a typedef struct - Stack Overflow
I am just trying to understand if the memory structures are the same (typedef of array of 3 is the same memory structure as well just a regular ...
-
#2[SOLVED] Initializing an array of a typedef struct with arrays ...
I am creating an array of a struct, and have an array of booleans within that struct, I cannot get the boolean array inside the struct to ...
-
#3[Solved] typedef struct arrays. How do they work? - CodeProject
so my question becomes how do i easely change all the values of a struct array to one value? Posted 26-Sep-15 7:21am. JONLIN.
-
#4C 語言中的typedef、struct、與union - zhung
本篇將介紹typedef、struct、與union,妥善使用可大幅提升寫程式效率及易 ... C 語言跟某一區段記憶體區塊的處理息息相關,例如開一個陣列Array 將一 ...
-
#5struct, pointer, array, typedef
Structs are heterogenous collections and arrays are homogeneous collections. ... typedef struct nn { int value; struct nn *next; } node; node *top; ...
-
#6Typedef Structs in C & Smart Array - YouTube
How to use Structs in C both normally and with pointers. Also includes how to create a Smart Array in C.
-
#712.2 Arrays of Structures
In this case, the elements of the array are structures of a specified type. ... struct inventory table[4]; ... typedef struct payrecord payrecord;
-
#8How to declare Array in Typedef Struct - Verification Academy
Whether we can declare a Array in typedef struct,I want to declare Payload array in typedef, array size changes according to type/length.
-
#9Composite type creation - CodeGuru : Thinking in C++
However, typedefs become especially important in C when used with struct. ... C03:StructArray.cpp // An array of struct typedef struct { int i, j, k; } ...
-
#10SystemVerilog Structure - ChipVerify
Normal arrays -> a collection of variables of same data type int array [10]; ... A structure is unpacked by default and can be defined using the struct ...
-
#11How do I declare an array of structures? - C Board
Why are you trying to declare a new type as an array? Just do: Code: [View]. typedef struct boardstate bs;. Then make an array of them:.
-
#12Quiz on Ch.9
Allocate memory dynamically for an array of. 30 integers. ... Arrays elements are addressed by index, structure ... typedef struct Student student_t;.
-
#13Arrays & Structs - Washington
(%rdi,%rsi,4) typedef int zip_dig[5];. Page 11. CSE 351, Summer 2019. L13: Arrays & Structs. Referencing Examples. 11. 1. 5.
-
#14typedef struct in C [Explained] - OpenGenus IQ
Typedef struct · First we have to use the keyword typedef before struct. · Then we can mention variables of different data types to be grouped under that struct.
-
#15C/C++ | ShareTechnote
defining and calling a struct · creating a struct array · passing a struct ... This example is just to show you how to define and use a struct with typedef.
-
#16Typedef union with array
Hello everyone, I have a typedef structure defined as follows: typedef struct { uint8_t status:4; // Holds state machine state
-
#17typedef struct array in c - 掘金
typedef struct array in c技术、学习、经验文章掘金开发者社区搜索结果。掘金是一个帮助开发者成长的社区,typedef struct array in c技术文章由稀土上聚集的技术大牛 ...
-
#18指標& Array & typedef - HackMD
typedef 看法解析; define & typedef; typedef & struct; typedef & const; typedef & 函數指標; typedef & sizeof. 二維Array. 二維Array 的首地址; 訪問二維Array.
-
#19CS31: Intro to C Structs and Pointers
... studentT // (we are just using the typedef alias name) studentT cs31[50]; // an array of studentT structs: each bucket // stores a studentT struct ...
-
#20Abstract Data Types Structures Typedef Opaque Pointers
Array ADT - Interface typedef struct Array *Array_T; extern Array_T Array_new(void); extern void Array_free(Array_T array);.
-
#21typedef in C Programming Language - BTech Smart Class
Example Program to illustrate typedef with arrays in C. ... In the above example program, Array is the alias name of integer array type of size 5. We can use ...
-
#22D.1.8 Flexible Array Members (Sun Studio 12: C User's Guide)
typedef struct { int n; double d[1]; ) DynamicDouble;. Note that the array d is not an incomplete array type and is declared with one member. Next, you declare ...
-
#23Representing Data Structures
Representing Data Structures. Multidimensional arrays. Structs ... typedef. // give type T another name: U typedef T U;. // struct types can be verbose.
-
#24Pointers to Structures - The Basics of C Programming
typedef struct { char name[21]; char city[21]; char state[3]; } Rec; typedef Rec ... In the example code below, an array of 10 pointers to structures is ...
-
#25structs - UNF
structs. Box. Aggregating associated data into a single variable ... A struct (short for structure) in C is a grouping of ... typedef for Arrays.
-
#26基本資料結構
本範例使用循環陣列(cyclic array)來實作Queue*/ #include <stdio.h> #define MAXLEN 100 typedef struct { int count; int head; int tail; int data[MAXLEN]; } ...
-
#27Typedef, Enum, Union, and Struct Attributes - Microsoft Learn
Specifies the index of the first array element to be transmitted. helpcontext, Specifies a context ID that lets the user view information about ...
-
#28array of typedef struct declared inside class - Qt Centre Forum
Hi everyone! I'm encountering problem about typedef struct. The case was i declared a struct inside a class like this: class Myclass ...
-
#29Flexible array members - Arm Developer
The last member of a struct can have an incomplete array type. ... typedef struct { int len; char p[]; // incomplete array type, for use in a malloc'd data ...
-
#30How to Use Malloc Function to Create Array of Structs
The struct is a data type similar to the array used in the c programming, but the only difference is that an array contains the values of the same data type ...
-
#3150777 - AutoESL: Array partition using structs ... - Xilinx Support
The main objective is a deep control over array partition when I use structs. #define NPOINTS 1000 #define N_CONS 5 #define O_CONS 3 typedef ...
-
#32Structures and Unions
typedef struct { /* use typedef keyword to create a new type */ int hours; ... an array of 10 TIME structs */ TIME *pt; /* a pointer to a TIME struct ...
-
#33Solved Given the following definition: typedef struct | Chegg.com
O An array of structs can store more information than parallel arrays. What is the purpose of the function CompareNumbers()? typedef struct Nums_struct ...
-
#34Structures, Unions, and Enumerated Types
Recall that an array is a collection of data items, all having the same data ... typedef struct Student { int nClasses; char name [ NAME_LEN + 1 ]; double ...
-
#35C struct (Structures) - Programiz
C struct · Define Structures · Create struct Variables · Access Members of a Structure · Example 1: C structs · Keyword typedef · Nested Structures · Why structs in C?
-
#36Chapter 19 Data Structures - Architecture and Compilers Group
An array is one kind of data structure. We will look at. . . struct – C's mechanism for building data structures ... typedef struct w_type WeatherData;.
-
#37Initializing Array of structs - Arduino Stack Exchange
Notice also that in C++ (which Arduino is), you don't need to use typedef for structs either, so I've removed that from the struct ...
-
#38Lecture 09 C Structs and Linked Lists
Array of structs and Array of struct pointers ... typedef for a struct that contain two fields, var1 and var2 as: typedef struct { unsigned int var1;.
-
#39typedef - Wikipedia
As such, it is often used to simplify the syntax of declaring complex data structures consisting of struct and union types, although it is also commonly used to ...
-
#40How do you best use a typedef struct? - Sololearn
In a typedef struct you can declare data like:: DWORD Machine; ... a pointer to the first element of that array as // Initializing the array with table's ...
-
#41Unit 8: Compound data - Naval Academy
4.1 Arrays of structs; 4.2 Pointers to structs; 4.3 Structs that ... The exact syntax is that you start with the keyword typedef , and then ...
-
#42C Programming Tutorial: Structures - randu.org
You could do it just like an array initialization. ... typedef struct { char *first; char *last; char SSN[9]; float gpa; char **classes; } student; ...
-
#43How to use the typedef struct in C - Educative.io
The C language contains the typedef keyword to allow users to provide alternative names for the primitive (e.g., int) and user-defined (e.g struct) data ...
-
#44C – Structs and Dynamic Memory Allocation
allocate a 10-float array ... Arrays require all elements to be of the same data type. • Many times, we want to group items ... typedef struct complex_st {.
-
#45Structured data types in C - Struct and Typedef Explained with ...
Try for example to create an array of type student and see how it works. Structs can be copied or assigned but you can not compare them! More ...
-
#46Queues
typedef struct _list_item { char name[64]; struct _list_item *next; } ... To implement a queue using an array we use integers to hold the index of the head ...
-
#47typedef in C - GeeksforGeeks
typedef struct students ... Below is the C program to implement typedef with an array: ... printf ( "typedef using an array\n" );.
-
#48Struct and union initialization - cppreference.com
If the members of the struct or union are arrays, structs, or unions, ... #include <stdio.h> typedef struct { int k; int l; int a[2]; } T; ...
-
#49Tutorial 2: Structures II - GitHub
iii) The diagram gives you an idea of the array of structures product. ... typedef struct { char name[20]; char sex; Date birthday; } Personal; ...
-
#502D Array, Struct, Malloc - Shuai Mu
2D arrays are stored contiguously in memory in row-major format ... Given a 2D array matrix[m][n] and a pointer ... typedef struct { int id; char name[100];. } ...
-
#51Creating Custom Types in SystemVerilog using Typedef ...
We use the struct and union keywords to create these types in SystemVerilog ... When we want to use an array as part of a typedef, ...
-
#52Creating an array of structs in c - Copy Programming
typedef struct trace { … } trace;. if you want, which would give you both trace and struct trace , but there's not really any point.
-
#53Getting Started with Programming – Part 8: Typedef and Structs
Part 4: Arrays and Lists · Part 5: Functions and Scope · Part 6: Defines and Random Numbers · Part 7: Pointers in C. This will be a C/ ...
-
#5410 typedef : Making New Types - Beej.us
Sometimes a struct will be typedef 'd to a new name so you don't have to type the word ... Make type five_ints an array of 5 ints typedef int five_ints[5]; ...
-
#55TypeDef array of size 1 - C / C++ - Bytes
Hello friends, It seems to be quite common in libraries (e.g. GMP) to have typedefs like typedef struct { /* stuff */ } __type_struct;
-
#56typedef struct { int id; char name[32]; int quantity; float price
Then in main we will declare an array of 30,000 variables each of data type “part”. Your program will display a menu with the following choices: 0. Exit 1.
-
#57advice about how to handle dynamic struct arrays (memset ...
now for some reasons I want to create it as a dynamic struct array - but how to memcpy 0 to this thing? Code: Select all typedef struct ...
-
#58Structures in C
In simple cases, scalar variables and arrays are sufficient. ... declaring a pointer to a structure of type struct dog ... typedef struct Books {.
-
#59c array of structs
In this article, we will show you the Array of Structures concept with one practical example. typedef struct { double p[3];//position double v[3];//velocity ...
-
#60Modeling structures as types instead of classes - IBM
struct perf_log_block { int cassette_mounts; }; struct perf_log_block blk_pos[ FIVE ]; another_block a_block[ FIVE ]; typedef struct _vanillaThing { char ...
-
#61Introduction to Structures
Unlike arrays, structures are considered to be single objects. ... struct tag {member-declarator-list}; ... With tag: */ typedef struct mystruct { .
-
#62How can I make an array of pointers to structs in c? - Quora
Firstly, you should define the structure: [code]typedef struct Point { int x; int y; } Point; [/code] * Then you can declare an array of pointers: ...
-
#63LabWindows/CVI - Struct Use - NI Community
... like to make (and use) a struct typedef struct { char mau[30]; ... Well, you've declared an array of pointers to struct estructura, ...
-
#64Lecture 4 - CS50 AP
If we wanted to add to our array, we would have to initialize a bigger ... We start this struct with typedef struct node so that we can refer to a node ...
-
#653-7 對於結構陣列的處理
... 的結構陣列轉成C 的結構陣列// Roger Jang, 20050402 #include "mex.h" #include <string.h> #define IN prhs[0] // 定義輸出變數typedef struct { char *name; ...
-
#666. Structures - Programming with C and C++ - Read the Docs
Arrays are collection of data of similar type, whereas the Structures are the collections ... then typedef and then function prototype struct item { int id; ...
-
#67C Structures (structs) - W3Schools
Each variable in the structure is known as a member of the structure. Unlike an array, a structure can contain many different data types (int, float, char, etc.) ...
-
#68Structs in C
struct Foo f; // automatic allocation, all fields placed on stack. f.x = 54;. f.array[3]=9;. typedef allows you to declare instances of a struct without ...
-
#69How to use Typedef Struct in C - TAE
The typedef is written inside the code and processed by the compiler. Example (program for typedef): //program for arrays using typedef #include ...
-
#70Typedef in C with Programming Example - STechies
C Typedef: Syntax, Use, Typedef Struct ... #include <stdio.h> #include <stdlib.h> typedef struct smartArray { int *array; int length; }smartArray; ...
-
#71Struct & Pointers
easy to access as array elements that are the same size. ... A structure is NOT an array of its members so can NOT use subscripts. ... typedef struct {.
-
#72Getting Started with Structs Sorting in C++ - Section.io
The keyword typedef is also used with structs to define a new object if ... as we shall see later in “working with arrays of a structure”.
-
#73User-defined Types, Structures and Linked Structures
(Alternatively, you can think of an array as a collection of variables, ... In old C, you had to use a typedef along with a struct to define the new type.
-
#74(原創) 如何將struct array寫入文字檔? 如何從文字 ... - 51CTO博客
21 typedef struct Student Student;. 22. 23 int main() {. 24 Student student0[ARRAY_SIZE]; // struct array for write.
-
#75Inadvertently embiggening a typedef'd array - RTI Community
typedef struct Q { long A[2]; double B[3]; char C[5]; } Q_t;. Compile it (using the RTI Connext 5.0.0 IDL compiler) and examine the ...
-
#76Structures In C - ASIC World
Structure declaration; Nested structures; Arrays of structures ... 1 typedef struct { 2 char name[64]; 3 char course[128]; 4 int age; ...
-
#77UNSOLVED Declare const array of struct - Qt Forum
Hello, I have the following code in cpp file: #include "xxx.h" typedef struct { int icon; QRect geometry; int layer; QString iconName; } ...
-
#78在C使用的指標技巧,如何在C# 中實現?? - iT 邦幫忙
在C中建立一個struct Mystruct typedef struct { int a1 char a2 . . . }Mystruct;. 有一個char 的陣列 char Array[64];. 當我將這個陣列指項這個結構時
-
#79Array of Structures in C - C Programming Tutorial - OverIQ.com
Declaring an array of structure is same as declaring an array of fundamental types. Since an array is a collection of elements of the same type. In an array of ...
-
#80View topic - PROGMEM using structs and arrays :: AVR Freaks
typedef struct menu_entry { void (*select)(void); // routine to call when selected char name[15]; // name to display for this entry struct menu *next_menu;
-
#81Typedef in C - Javatpoint
Typedef in C with programming examples for beginners and professionals covering concepts, control statements, c array, c pointers, c structures, c union, ...
-
#82Data Structures - Colorado State University
typedef. C provides a way to define a data type by giving a new ... typedef struct ab_type { ... Each array element is a struct (7 words, in this case).
-
#83C 和C++ 中struct 和typedef struct 的區別| Gary - - 點部落
typedef struct { int data; int text; } S1; // 這種方法可以在c或者c++中定義一個S1結構 struct S2 { int data; int text; }; // 這種定義方式只能 ...
-
#84Using a pointer/image in a struct, array of images
How can I pass an array of images as kernel argument? thx. typedef struct tMyStruct { float a, b, c, d; const __global float *buf; __read_only image2d_t img ...
-
#85difference between struct and array systemverilog
Collection of variables of different data types. typedef enum logic {INVALID_PKT,VALID_PKT} pkt_type; typedef struct packed { byte addr; pkt_type valid; bit [31 ...
-
#861. Declarations and Initializations - C FAQ
typedef struct { char *item; NODEPTR next; } *NODEPTR; ... 1.21 How do I construct declarations of complicated types such as ``array of N pointers to ...
-
#87Deep Copy of Struct Member Arrays in C - Tutorialspoint
Deep Copy of Struct Member Arrays in C - Structure allows us to create ... #include <stdio.h> #include <string.h> typedef struct student ...
-
#882 Ways to Use Single-Member structs in C - Atomic Spin
Use C structs to preserve array size information and make built-in ... The typedef keyword gives us a way to make types like count_t that ...
-
#89204112: Structured Programming - Computer Science CMU
typedef struct point pointT; ... typedef. Method 1: struct point { int x;. สับตำาแหน่งได้ ... Declaring arrays of structure: struct point p[10];.
-
#90Arrays of Structure Allocating memory for array of structures.
Hey Folks, I have run into a peculiar problem, which is as follows: typedef struct { int a; } struct1; typedef struct { struct1 * struct_1st ...
-
#91How to update data to members of a structure - CPlusPlus.com
Secondly, you should consider using an array in your struct, instead of a zillion of separate members! 1 2 3 4 5 6, typedef struct ...
-
#92[C#] Allocate structure buffer array from DLL - Falldog的程式戰場
[C#] Allocate structure buffer array from DLL ... #define DLL_API __declspec(dllexport) typedef struct _Data { bool bData; int nData; ...
-
#93problem in passing struct arrays to functions in C
I'm crazying because I'm not able to pass an array of structs to a function in C ... #define MAX 50 typedef char STRINGA[30]; typedef struct ...
-
#94C Language Tutorial => Typedef Structs
Example#. Combining typedef with struct can make code clearer. For example: typedef struct { int x, y; } ...
-
#95Answered: Write the C function that will create… - Bartleby
... in the dyna The function's parameter must match the call shown below. typedef struct dynArrStruct int int int } dynArr; /* pointer to the dynamic array ...
-
#96Having trouble passing array of structures to a function
If your passing a pointer to an array then your function should accept ... I made those changes, plus a few others (had to make sure typedef ...
-
#97[C 語言] 程式設計教學:如何使用結構(Struct)
typedef struct { char *name; unsigned age; } person_t;. 這時候的結構是匿名結構(anonymous structure),不會占用命名空間。 存取結構內屬性. 使用 ...
-
#98有關C語言的struct進階初始化@ 程式專欄 - 隨意窩
假設有一個student的結構定義如下:typedef struct student{ char name[50]; ... 類似陣列(array)的宣告方法,不同的是,他賦值的順序是可以不用按照struct定義內的 ...
typedef 在 prasertcbs Youtube 的精選貼文
สร้างอะเรย์ให้กับประเภทข้อมูลที่กำหนดขึ้นเองจาก typedef struct
ดาวน์โหลดไฟล์ตัวอย่างได้ที่ https://goo.gl/I6lqgo
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่ ► https://www.youtube.com/subscription_center?add_user=prasertcbs
playlist สอนภาษา C เบื้องต้น ► https://www.youtube.com/watch?v=Z_u8Nh_Zlqc&list=PLoTScYm9O0GHHgz0S1tSyIl7vkG0y105z
playlist สอนภาษา C++ เบื้องต้น ► https://www.youtube.com/watch?v=_NHyJBIxc40&list=PLoTScYm9O0GEfZwqM2KyCBcPTVsc6cU_i
playlist สอนภาษา C# เบื้องต้น ► https://www.youtube.com/watch?v=hhl49jwOIZI&list=PLoTScYm9O0GE4trr-XPozJRwaY7V9hx8K
playlist สอนภาษาจาวา Java เบื้องต้น ► https://www.youtube.com/watch?v=O3rW9JvADfU&list=PLoTScYm9O0GF26yW0zVc2rzjkygafsILN
playlist สอนการทำ Unit Test ภาษาจาวา Java ► https://www.youtube.com/watch?v=R11yg8hKApU&list=PLoTScYm9O0GHiK3KNdH_PrNB0G3-kb1Bi
playlist สอนภาษาไพธอน Python เบื้องต้น ► https://www.youtube.com/watch?v=DI7eca5Kzdc&list=PLoTScYm9O0GH4YQs9t4tf2RIYolHt_YwW
playlist สอนภาษาไพธอน Python การเขียนโปรแกรมเชิงวัตถุ (OOP: Object-Oriented Programming) ► https://www.youtube.com/watch?v=4bVBSluxJNI&list=PLoTScYm9O0GF_wbU-7layLaSuHjzhIRc9
playlist สอนภาษา R เบื้องต้น ► https://www.youtube.com/watch?v=oy4qViQLXsI&list=PLoTScYm9O0GF6qjrRuZFSHdnBXD2KVICp
playlist สอนภาษา PHP เบื้องต้น ► https://www.youtube.com/watch?v=zlRDiXjYVo4&list=PLoTScYm9O0GH_6LARFxozL_viEsXV2wgO
typedef 在 prasertcbs Youtube 的最佳貼文
ดาวน์โหลดไฟล์ตัวอย่างได้ที่ https://goo.gl/eDg71P
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่ ► https://www.youtube.com/subscription_center?add_user=prasertcbs
playlist สอนภาษา C เบื้องต้น ► https://www.youtube.com/watch?v=Z_u8Nh_Zlqc&list=PLoTScYm9O0GHHgz0S1tSyIl7vkG0y105z
playlist สอนภาษา C++ เบื้องต้น ► https://www.youtube.com/watch?v=_NHyJBIxc40&list=PLoTScYm9O0GEfZwqM2KyCBcPTVsc6cU_i
playlist สอนภาษา C# เบื้องต้น ► https://www.youtube.com/watch?v=hhl49jwOIZI&list=PLoTScYm9O0GE4trr-XPozJRwaY7V9hx8K
playlist สอนภาษาจาวา Java เบื้องต้น ► https://www.youtube.com/watch?v=O3rW9JvADfU&list=PLoTScYm9O0GF26yW0zVc2rzjkygafsILN
playlist สอนการทำ Unit Test ภาษาจาวา Java ► https://www.youtube.com/watch?v=R11yg8hKApU&list=PLoTScYm9O0GHiK3KNdH_PrNB0G3-kb1Bi
playlist สอนภาษาไพธอน Python เบื้องต้น ► https://www.youtube.com/watch?v=DI7eca5Kzdc&list=PLoTScYm9O0GH4YQs9t4tf2RIYolHt_YwW
playlist สอนภาษาไพธอน Python การเขียนโปรแกรมเชิงวัตถุ (OOP: Object-Oriented Programming) ► https://www.youtube.com/watch?v=4bVBSluxJNI&list=PLoTScYm9O0GF_wbU-7layLaSuHjzhIRc9
playlist สอนภาษา R เบื้องต้น ► https://www.youtube.com/watch?v=oy4qViQLXsI&list=PLoTScYm9O0GF6qjrRuZFSHdnBXD2KVICp
playlist สอนภาษา PHP เบื้องต้น ► https://www.youtube.com/watch?v=zlRDiXjYVo4&list=PLoTScYm9O0GH_6LARFxozL_viEsXV2wgO
typedef 在 prasertcbs Youtube 的最讚貼文
ดาวน์โหลดไฟล์ตัวอย่างได้ที่ https://goo.gl/zIwGyi
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่ ► https://www.youtube.com/subscription_center?add_user=prasertcbs
playlist สอนภาษา C เบื้องต้น ► https://www.youtube.com/watch?v=Z_u8Nh_Zlqc&list=PLoTScYm9O0GHHgz0S1tSyIl7vkG0y105z
playlist สอนภาษา C++ เบื้องต้น ► https://www.youtube.com/watch?v=_NHyJBIxc40&list=PLoTScYm9O0GEfZwqM2KyCBcPTVsc6cU_i
playlist สอนภาษา C# เบื้องต้น ► https://www.youtube.com/watch?v=hhl49jwOIZI&list=PLoTScYm9O0GE4trr-XPozJRwaY7V9hx8K
playlist สอนภาษาจาวา Java เบื้องต้น ► https://www.youtube.com/watch?v=O3rW9JvADfU&list=PLoTScYm9O0GF26yW0zVc2rzjkygafsILN
playlist สอนการทำ Unit Test ภาษาจาวา Java ► https://www.youtube.com/watch?v=R11yg8hKApU&list=PLoTScYm9O0GHiK3KNdH_PrNB0G3-kb1Bi
playlist สอนภาษาไพธอน Python เบื้องต้น ► https://www.youtube.com/watch?v=DI7eca5Kzdc&list=PLoTScYm9O0GH4YQs9t4tf2RIYolHt_YwW
playlist สอนภาษาไพธอน Python การเขียนโปรแกรมเชิงวัตถุ (OOP: Object-Oriented Programming) ► https://www.youtube.com/watch?v=4bVBSluxJNI&list=PLoTScYm9O0GF_wbU-7layLaSuHjzhIRc9
playlist สอนภาษา R เบื้องต้น ► https://www.youtube.com/watch?v=oy4qViQLXsI&list=PLoTScYm9O0GF6qjrRuZFSHdnBXD2KVICp
playlist สอนภาษา PHP เบื้องต้น ► https://www.youtube.com/watch?v=zlRDiXjYVo4&list=PLoTScYm9O0GH_6LARFxozL_viEsXV2wgO