#C #CTUTORIAL #DATATYPES #DERIVED #DERIVEDDATATYPES #CLANGUAGE #CPROGRAM #CPROGRAMMING #arrays #pointers #functions#datatypes #derived_datatypes #datatypes #Programming_Language #youtubechannel #youtube #youtuber #youtubers #subscribe #youtubevideos #sub #youtubevideo #like #instagram #programming #coding #programmer #python #developer #technology #code #coder #computerscience #tech #software #codinglife #linux #softwaredeveloper #programmingmemes #programmers #programminglife #hacking #machinelearning #php #computer #softwareengineer #bhfyp
Welcome to my channel Prince of Programming👨🎓
/ @princeofprogramming
This tutorial will give you a full introduction into DERIVED DATATYPES.
• DERIVED DATATYPES
Give this video a thumps up👍
Share & subscribe for more videos😏
Show your support to recover the channel❤
Click the bell icon to get notified for new videos🔔
Feel free to drop your doubts in the comment section📗
TOPIC11-DERIVED DATATYPES • DERIVED DATATYPES
Derived Datatypes:
Derived data types are derived from the basic or primitive data types.
Some of the derived data types are:
1. Arrays
2. Pointers
3. Functions
Arrays:
Arrays can be defined as the collection of similar type of data.
Elements of an array are referred by index number which always begins with zero.
Syntax: datatype array_name[array_size];
Pointers:
A pointer is a variable whose value is the address of another variable. [memory location]
A pointer variable is denoted by * symbol.
Syntax: datatype *variable_name;
Functions:
A function is a group of statements that together perform a task.
Every C program has at least one function, which is main().
A function declaration tells the compiler about a function's name, return type, and parameters.
Syntax : return_type function_name(parameter list);