No video

#19 C Arrays | C Programming For Beginners

  Рет қаралды 237,664

Programiz

Programiz

Күн бұрын

#19 C Arrays | C Programming For Beginners
In this video, you will learn about array in C Programming. You will learn to declare, initialize and access elements of an array with the help of examples. In addition to that you will have clear concept on using array with loops and index out of bound errors that you may face while using an array.
This video is a part of our C Programming video series: • #1: Getting Started wi...
~
Resources:
C Online Compiler: www.programiz....
Github File: github.com/pro...
C (title) Tutorial (text-based tutorial): www.programiz....
Timestamps:
00:00 Start
00:18 C Arrays
00:51 Syntax for array declaration
01:46 Assign Value to Array
03:23 Array index
05:33 Assign Values using index number
07:58 Change Array Elements
09:09 Loop and Array
11:32 Index Out of bound Error
12:28 Programming Task
13:07 Quiz
~
Revise your learning using our C App
Download here for Android: bit.ly/3upaInx
Download here for iOS: apple.co/3EZLtNq
Find Programiz elsewhere:
Facebook: / programiz
Instagram: / _programiz
LinkedIn: / programiz
Website: www.programiz.com
Twitter: / programiz
#programiz #carray #cprogramming #learnc #array #loop

Пікірлер: 313
@programizstudios
@programizstudios 2 жыл бұрын
🔥Finding it Damn Hard to Understand C Programming? Learn to code-the right way-with interactive lessons, quizzes & challenges. Build a strong programming base; it's IMPORTANT! Try Programiz PRO for Free: bit.ly/master-c-programming
@AbhiramDeshpande-fe1vi
@AbhiramDeshpande-fe1vi Жыл бұрын
#include int main() { int marks[5]={50,66,78,84,92}; int average = (marks[0]+marks[1]+marks[2]+marks[3]+marks[4])/5; printf(" the average marks is : %d",average); return 0; }
@shondeabreu5542
@shondeabreu5542 Жыл бұрын
@@AbhiramDeshpande-fe1vi I made mine a bit more complex lol.
@joechen9498
@joechen9498 Ай бұрын
#include int main() { int marks[5]={12,13,14,15,16}; int sum = marks[0]+marks[1]+marks[2]+marks[3]+marks[4]; printf("%d" ,sum); int average = sum/5; printf("%d" , average); return 0; }
@SauravKumar-vj7ks
@SauravKumar-vj7ks 2 жыл бұрын
Awesome and crisp explanation. Keep making more videos to cover the entire language. Your series is really very crisp ,informational and easily understandable.
@hrushikeshtodkari5265
@hrushikeshtodkari5265 2 жыл бұрын
I Like your teaching method. keep posting such contents free for the student. thank you.....
@olusamuel7672
@olusamuel7672 Жыл бұрын
The Quiz answer is 0, no digit is stored in that index so automatically it's 0. Between I love the way you teach, you make C look easy and have really really learnt a lot from your channel. good job ❤😊
@JoseCarv0
@JoseCarv0 5 ай бұрын
Yes, it is 0, but the reason is not that.
@galaxygaming8109
@galaxygaming8109 2 ай бұрын
sok tau kau deck
@ravikumarronad7475
@ravikumarronad7475 Жыл бұрын
Correct Answer is C. 0 Array of size is 5 so in the given array have 3 elements so remaining 4th and 5th index number store automatically 0 value. Pictorial is: Int num[5]= { 2, 3, 5, 0, 0} Important Note: Array is Collection of Homogenous elements.
@akashmathdevru8618
@akashmathdevru8618 Жыл бұрын
no it show random no....because in video saw put value 6 nut it can present 0--4 integer remaining it get random no. so i think D
@TiTan-gr3pv
@TiTan-gr3pv 11 ай бұрын
​@@akashmathdevru8618in that case the value she asked for was out of the size of the array so it gave a random value but if you don't store any value willingly inside a particular index of an array the value 0 will be stored in many compilers and some may show an error so it doesn't give an output of a random value
@prathikantamsaivarnith484
@prathikantamsaivarnith484 Жыл бұрын
#include int main() { int marks[5]; for(int i=0;i
@ashenafigodana
@ashenafigodana Жыл бұрын
clear, concise and to the point explanation Thank you.
@SumitSingh-ov6ws
@SumitSingh-ov6ws 2 жыл бұрын
Programming task: /*Create a program that computes the average marks of a student. Create and array that stores the marks of 5 subjects; Compute the total marks by adding all the marks; Divide the total marks by the total number of subjects; Print the average marks. */ #include main() { int i; int sum=0; int marks[5]; for(i=0;i
@bansarithakker7661
@bansarithakker7661 10 ай бұрын
Thnx broo
@ntwadumela7
@ntwadumela7 8 ай бұрын
Good but its good programming practice that you initialize avg as int avg and then add avg=sum/5 and print it.
@andrewsterling895
@andrewsterling895 8 ай бұрын
I suggest you remove the printf("Entre the marks "); out of the for loop.
@josuealcala6255
@josuealcala6255 4 ай бұрын
I appreciate this. I missunderstood the wording of the quiz and this made me understand what she was asking for
@stealthy_doctor
@stealthy_doctor 2 ай бұрын
wonderful explanation, i think the answer to the quiz is C. 0 and for the task: #include #include int main() { // Write C code here int age[6]; int sum; int average; printf("Enter 5 Subject's Grades: "); for(int i =0;i
@fairooznadia8955
@fairooznadia8955 Жыл бұрын
#include int main() { int i; double avg; double marks[5]; printf("Enter marks of 5 subjects:"); for(i=0 ;i
@nyangparker4195
@nyangparker4195 3 ай бұрын
woah! you are great in explaining c programming. sorry my English is not that good, but yours was good enough to make me understand it very well. thankyou! i hope to see more videos from you!
@linbz2784
@linbz2784 3 ай бұрын
this is helping me a lot, i always use programiz terminal when i want to try something quick and it is really helpful. Now those classes are helping me understand even more.
@pashamreddy7926
@pashamreddy7926 Жыл бұрын
at 11.30 why did the output come as 6 instead of 16 ?
@ElHipokondriako
@ElHipokondriako Жыл бұрын
I did notice too. Just guessing, but might be a bug in the compiler?
@dryadsharaz
@dryadsharaz 3 ай бұрын
Haa nhasi ndopandatozonzwisisa ma array after a long time. Well done parohwa basa apa🙌🤝
@danielmalatji1813
@danielmalatji1813 11 ай бұрын
am yet to find best teacher thank you for your content it really makes it easier to learn and grasp info on c programming.
@user-jt3dx4zv3u
@user-jt3dx4zv3u Жыл бұрын
#include int main(){ double marks[5], sum = 0.0; for(int i = 0; i < 5; i++){ printf("Insert marks:", marks[i]); scanf("%lf", &marks[i]); sum += marks[i]; } double average = sum / 5; printf("The average marks is: %lf ", average); return 0; }
@mek059
@mek059 Жыл бұрын
At 11:30 it printed 6 instead of 16 .. Why? 😳
@roxettesamarinta9801
@roxettesamarinta9801 Жыл бұрын
Same question too
@ElHipokondriako
@ElHipokondriako Жыл бұрын
Does the same at 12:09. I think it's just a bug in the compiler.
@ElHipokondriako
@ElHipokondriako Жыл бұрын
11:27 somehow returned "6" instead of "16" in age[3]?
@zombiesbyte331
@zombiesbyte331 8 ай бұрын
I'm also puzzled by this
@Honest_Reply900
@Honest_Reply900 3 ай бұрын
One of the best teaching method, please go ahead and make more contents like this
@Saint-Phillemon
@Saint-Phillemon Ай бұрын
I love her english, so different and unique to grasp even better
@programizstudios
@programizstudios 2 жыл бұрын
[Programiz Video Quiz] Q. Which value will we get when we print num[4] from the following array? int num[5] = {2, 3, 5}; 1. 2 2. 5 3. 0 4. Random Value
@thisistusharmahajan
@thisistusharmahajan 2 жыл бұрын
0
@maybevinay
@maybevinay 2 жыл бұрын
Answer:- 0
@user-gv9if4jx3h
@user-gv9if4jx3h 2 жыл бұрын
Garbage Value
@rickzalman4136
@rickzalman4136 2 жыл бұрын
0 is the default value for any element not initialized by the user
@codewithabhi1089
@codewithabhi1089 2 жыл бұрын
0 will be the answer bcz size is exceeding the array.
@swapnildargude284
@swapnildargude284 2 жыл бұрын
#include int main() { int marks[5]; int i,sum=0,average; printf("Enter marks of 5 subjects"); for (i = 0; i
@ranjithn0605
@ranjithn0605 9 ай бұрын
#include int main() { // Write C code here int marks[5]={56,45,67,87,56}; int totalMarks = marks[0] + marks[1] + marks[2] + marks[3] + marks[4]; double averageMarks= totalMarks/5.0; printf("The total marks scored = %d ",totalMarks); printf("The averageMark = %.2lf ",averageMarks); return 0; }
@murti1565
@murti1565 Жыл бұрын
i love it when she says "jero"
@naomywitherwhy129
@naomywitherwhy129 Жыл бұрын
in the for loop you had an input of 16 but printed out as 6 in the compiler, what could be the problem
@2snish
@2snish 2 жыл бұрын
Thank you ! Great explanation,Simple but precise and also great initiative on making this videos available to all !
@saladevamanikanta6788
@saladevamanikanta6788 2 жыл бұрын
mam! i did it, lots of thanks for you by adding the addition points to it. Thanks a lot mam. /* Create a program that computes the average marks of a student. 1. Create an array that stores the marks of n subjects. 2. Compute the total marks by adding all the marks. 3. Divide the total marks by total number of subjects. 4. Compute the percentage. 5. Print the average marks and percentage and total marks. */ #include #include int main() { int subs, subs1, total_marks = 0, array[100], entire_total; float average, percentage; clrscr(); printf("Enter how many subjects you have: "); scanf("%d", &subs); printf("The Entire Total marks of the subjects are: "); scanf("%d",&entire_total); for(subs1 = 0; subs1 < subs; subs1++) { printf("Enter the score in subject%d : ", subs1); scanf("%d", &array[subs1]); } for(subs1 = 0; subs1 < subs; subs1++) { total_marks = total_marks + array[subs1]; } average = (float)total_marks / subs; percentage = ((float)total_marks / entire_total ) * 100; printf(" The Total marks of the subjects out of %d : %d", entire_total,total_marks); printf(" The Average marks of the subjects are: %.3f", average); printf(" The Percentage of all subjects according to your marks: %.3lf %", percentage); getch(); return 0; }
@novafenice5745
@novafenice5745 Жыл бұрын
#include #include int main(){ float grades[5]; int i; float sum = 0; for(i = 0; i < 5; i++){ printf("Inserect grades: "); scanf("%f", &grades[i]); sum = sum + grades[i]; } float average = sum/5; printf("The average marks is: %.2f", average); return 0; }
@parkwanff1743
@parkwanff1743 Ай бұрын
int main(){ int n; printf("Enter the number of subjects "); scanf("%d",&n); float a[n]; float sum=0.0; float average; for(int i=0;i
@onic9623
@onic9623 Жыл бұрын
Option C : 0 ----------------------------------------------------------------------------- #include int main() { int marks[5], total = 0; printf("Enter Marks Of Five Subjects : "); for(int i =0; i < 5; i++) { scanf("%d", &marks[i]); total = total + marks[i]; } printf("Average Mark = %d", total/5); return 0; }
@hrushikeshtodkari5265
@hrushikeshtodkari5265 2 жыл бұрын
D. Random value
@dhanushs1802
@dhanushs1802 2 жыл бұрын
I guess you haven't considered the size of the array, so it is 0.
@waleedd857
@waleedd857 5 ай бұрын
thanks! but why do you pronounce g as z an z as g?
@kavinkumarg691
@kavinkumarg691 2 жыл бұрын
ANSWER #include int main() { int i; int marks[5]; int total=0; printf("enter the marks: "); for(i=0;i
@teddymacdesley
@teddymacdesley 2 ай бұрын
Thabks alot this woll surely hwlp me for today HND exams i have .
@SilicioouGrafeno
@SilicioouGrafeno 2 ай бұрын
When changing the value of the array age[2] from 25 to 26, why wasn't it changed directly inside the int function? 8: 48 is the video time. Someone please help me understand this.
@aphiwesithole4663
@aphiwesithole4663 Жыл бұрын
#include int main() { int subjmarks[5]; printf("enter marks of 5subjects: "); for(int s=0;s
@Jeff-qr8eo
@Jeff-qr8eo 2 ай бұрын
I understand this more than from my class lol.
@pravyjha4567
@pravyjha4567 3 ай бұрын
At 11:25 why u used ++i instead of i++
@sanayounas8014
@sanayounas8014 Жыл бұрын
I Like your teaching method. keep posting such contents free for the student. Thank you answer is 0
@saiphanikrishnathallam5599
@saiphanikrishnathallam5599 8 ай бұрын
Great and simply explained too good And the answer is( c) . 0
@bibeklimbu-nt4ff
@bibeklimbu-nt4ff 4 ай бұрын
guyz haru ta nepali po raixan so proud of that
@war.blitzee7985
@war.blitzee7985 Жыл бұрын
Thank you very much for these videos. Your websites also give excellent content. Keep up the great work.
@dexterstudytool
@dexterstudytool Ай бұрын
nice class and this are best in business
@MupenziJeanFelix-wk9rx
@MupenziJeanFelix-wk9rx Жыл бұрын
hello. I like however you teach or share us about your skills. thank you alot.
@anesp.a913
@anesp.a913 2 жыл бұрын
The output of that code is option (d) Random Value
@maxwell4466
@maxwell4466 Жыл бұрын
That's what I thought, apparently their github repository says different.
@iam__aj37
@iam__aj37 Жыл бұрын
@@maxwell4466 Can you provide me their gitHub repository link?
@Sara.j-hk4my
@Sara.j-hk4my Жыл бұрын
#include int main( ) { int marks[5], i; int sum=0; float avg; for(i=0;i
@puritykamane8695
@puritykamane8695 Ай бұрын
// Online C compiler to run C program online #include int main() { int marks[5]; double total = 0; double average; printf("Enter marks for the five subjects: "); for (int i = 0; i < 5; i++) { scanf("%d", &marks[i]); total = total + marks[i]; } printf(" The total marks is %.2lf ", total); average = total / 5; printf(" The average is %.2lf ", average); return 0; }
@Saurabhekka22
@Saurabhekka22 Жыл бұрын
I might be wrong but the answer to the question in the end is Random value, option (D)
@jessamiee88
@jessamiee88 Жыл бұрын
thank you very very very much, you help me a lot
@mohammadabdullahaalforhad1375
@mohammadabdullahaalforhad1375 9 ай бұрын
your understanding is so good
@yousefkhaled6082
@yousefkhaled6082 22 күн бұрын
int main() { int marks[5],sum,avg,x; printf("Please enter the grades of 5 students: "); for(x=0;x
@ananyatak5121
@ananyatak5121 Жыл бұрын
programming task- int marks[5]; printf(" Enter the marks of 5 different subjects of a student:"); for (int i=0; i
@twinkleramchandani5193
@twinkleramchandani5193 15 күн бұрын
#include int main() { int marks[5]; int sum = 0; printf("enter the marks for all 5 subjects : "); for(int x=0 ; x < 5; x++) { scanf("%d" , &marks[x]); } printf("the marks are-: "); for(int x=0 ; x < 5 ; x++) { printf("%d " , marks[x]); sum += marks[x]; } printf(" total is = %d" , sum); int avgMarks; avgMarks = sum/5; printf(" the avg marks are -: %d" , sum/5); return 0; }
@expecttheunexpectedt
@expecttheunexpectedt 2 жыл бұрын
Excellent to understanding... Tqsm mam...
@KpopRumbleAlliance
@KpopRumbleAlliance 4 ай бұрын
#include int main() { // Create an array that stores the marks of 5 subjects int marks[] = {75, 80, 85, 90, 95}; // Compute the total marks by adding all the marks int total_marks = 0; for (int i = 0; i < 5; i++) { total_marks += marks[i]; } // Divide the total marks by total number of subjects int number_of_subjects = sizeof(marks) / sizeof(marks[0]); float average_marks = (float)total_marks / number_of_subjects; // Print the average marks printf("Average marks: %.2f ", average_marks); return 0; }
@keshavdixit08
@keshavdixit08 Жыл бұрын
#include int main() { int marks_sub[5] = {60,70,54,82,50}; float total_marks=0, avg_marks; //total_marks = marks_sub[0] + for (int i=0;i
@tripodshedbymuyengwa7014
@tripodshedbymuyengwa7014 2 жыл бұрын
int main() { int ave,sum; int student_marks[5]; printf("Enter student marks :",student_marks[5]); scanf("%d%d%d%d%d",&student_marks[5]); { sum=student_marks[5]++; printf("Total mark is : ",sum); } ave=sum/5; printf("Avarage mark is:%d",ave); return 0; }
@shadyzmartinez
@shadyzmartinez 5 ай бұрын
i found it interesting 😊 i like it
@peterabdallah7555
@peterabdallah7555 2 жыл бұрын
Very very helpful,thank you keep it up
@AM-yd8en
@AM-yd8en 8 ай бұрын
8:48 why the output is not 25, and what if i want 25 what should i do?
@umarsquare4328
@umarsquare4328 8 ай бұрын
I really like your explanation.....
@nihatdonmzov4166
@nihatdonmzov4166 Жыл бұрын
Thank you so much for the video !
@batuhanerkek2874
@batuhanerkek2874 Жыл бұрын
Arrays is very easy with you.
@growth_entertain
@growth_entertain Жыл бұрын
i dont get it in the last part of hte video u ask one quesetion it ans will be random number
@arjunsavitha466
@arjunsavitha466 Жыл бұрын
Thank you mam 😊
@telugugamingff6311
@telugugamingff6311 20 күн бұрын
#include #define A 5 int main () { int age[A]; int sum=0; double b=0; printf("enter 5 numbers here : "); for(int i=0;i
@user-lf2xu1xm3y
@user-lf2xu1xm3y 11 ай бұрын
double number[5]; printf("Enter the number: "); scanf("%lf %lf %lf %lf %lf", &number[0],&number[1],&number[2],&number[3],&number[4]); double add = (number[0]+number[1]+number[2]+number[3]+number[4]); double sum = add / 5; printf("%lf", sum);
@bullgamerdoga9293
@bullgamerdoga9293 Жыл бұрын
best channel ever thank you hanım abla
@jagdishshinde4383
@jagdishshinde4383 Жыл бұрын
Assomone explanation mam👍👍👍👍
@mumizazvlog2508
@mumizazvlog2508 17 күн бұрын
#include int main() { int subjects,marks[10]; int i,sum=0,average; printf("Enter how many subjects:-"); scanf("%d",&subjects); printf("Enter the marks you obtained:-"); for(i=0;i
@abhijeettechverse7
@abhijeettechverse7 2 жыл бұрын
Ans is - D. Random value because we are trying to access uninitialized value
@doha__4710
@doha__4710 3 ай бұрын
Quiz answer is C. 0
@ItsAndroidDeveloper
@ItsAndroidDeveloper 8 ай бұрын
I love programmiz😊😊😊 5:11
@user-to5rz4kc3i
@user-to5rz4kc3i 11 ай бұрын
#include int main() { float sum = 0; float marks[5]; for (int i = 0; i < 5; ++i) { printf("Enter the course grade: "); scanf("%f", &marks[i]); sum = sum + marks[i]; } printf("Total marks is %.2f ", sum); printf("Average marks is %.2f", sum/5); return 0; }
@lonehesh8933
@lonehesh8933 2 жыл бұрын
#include int main() { float mark [5]; float sum=0; float acumulador = 0,average=0; printf("Enter subject marks: "); for (int i = 0 ; i < 5; ++i) { scanf("%f", &mark[i]); sum=sum+mark[i]; acumulador =acumulador+mark[i]; } printf("sum is %f ",sum); printf("average is %f ",acumulador/5); }
@mdt7672
@mdt7672 20 күн бұрын
11:28 you entered 16 in the 3rd index but the output was 6 😮
@ordealkarisa1517
@ordealkarisa1517 Жыл бұрын
Wow I like the way you pronounce zero. You're the best 👌 ever 💓
@BWM.LIFE-FOUNDATION-tv
@BWM.LIFE-FOUNDATION-tv 7 ай бұрын
Nice my teacher 🙏🙏🎉🎉
@ixa-i
@ixa-i 10 ай бұрын
#include #include int main() { int marks[5]; int total=0; double average; printf("Enter marks scorred: "); for(int i =0;i
@imrannazari8642
@imrannazari8642 Жыл бұрын
#include int main(){ int marks[5]; float total; for (int i = 0; i < 5; i++) { scanf("%d",&marks[i]); } for (int i = 0; i < 5; i++) { total = marks[i] + total; } int mark = sizeof(marks)/sizeof(marks[0]); total = total / mark; printf("the average marks is %.2f ",total); }
@christiangomezcastillo4383
@christiangomezcastillo4383 Жыл бұрын
Animo joel tu puedes
@Queen_Kenara_Music
@Queen_Kenara_Music 10 ай бұрын
Happy programming 🎉
@shivaprasad._.08
@shivaprasad._.08 Жыл бұрын
Superb explanation 🙏
@RailExpressbyPreetam
@RailExpressbyPreetam Жыл бұрын
Nice explanation mam
@erl2nd
@erl2nd Жыл бұрын
#include int main(){ float grades[5]; float sum = 0; float calculator = 0, average = 0; printf("Enter Subject grades: "); for(int i = 0; i < 5; ++i){ scanf("%f", &grades[i]); sum = sum + grades[i]; calculator = calculator + grades[i]; } printf("sum is: %f ", sum); printf("average is: %f ", calculator / 5); }
@jdram82
@jdram82 Жыл бұрын
Great Explanation, Thank you for the same.
@thelegendarysummersky3189
@thelegendarysummersky3189 5 ай бұрын
#include int main() { int i; double avg; double marks[5]; printf("Enter your marks: "); for(int i = 0; i < 5; ++i){ scanf("%lf", &marks[i]); } avg = (marks[0] + marks[1] + marks[2] + marks[3] + marks[4])/5; printf("avg mark = %lf", avg); return 0; }
@davebull6321
@davebull6321 Жыл бұрын
int marks[5]; printf("Write down the 5 numbers: "); for(int i= 0;i < 5; ++i) { scanf("%d", &marks[i]); } int avg = ((marks[0] + marks[1] + marks[2] + marks[3] + marks[4]) /5 ) ; printf("Result = %d",avg); return 0; }
@omaeshebl4732
@omaeshebl4732 Жыл бұрын
@vishnureddy6098
@vishnureddy6098 Жыл бұрын
May I know where we can use new line character "/n"
@barkhadibraahim1023
@barkhadibraahim1023 Жыл бұрын
#include int main () { int grade [5]; int total = 0; int avg = 0; printf("enter the grade of 5 subj: "); for(int i = 0; i < 5; ++i) { scanf("%d", &grade[i]); total = total + grade[i]; } printf("avrege = %d", total / 5); return 0; }
@user-es9pb9mv7p
@user-es9pb9mv7p 10 ай бұрын
int marks[3]; scanf("%d",&marks[0]); printf("phy:%d ",marks[0]); scanf("%d",&marks[1]); printf("chem:%d ",marks[1]); scanf("%d",&marks[2]); printf("bio:%d ",marks[2]); printf("%d ",marks[0]+marks[1]+marks[2]); int n=marks[0]+marks[1]+marks[2]; printf("%d",n/3);
@vinayakpotadar4907
@vinayakpotadar4907 2 ай бұрын
/* //write the code to calculate the total and average of 5 subjects */ #include //including the standard input output header file int main() //main function { int marks[5],total=0; //initializing the array and total printf("Enter all 5 subject marks: "); //asking the user to enter the marks for(int i=0;i
@MrHuman-it2sg
@MrHuman-it2sg 2 жыл бұрын
Programming task : #include int main(){ int i,subject[5]; for(i = 0; i
@user-mr3mf8lo7y
@user-mr3mf8lo7y Жыл бұрын
Thanks a bunch.
@pravinsingh3453
@pravinsingh3453 Жыл бұрын
Thank you mam give more things of array,🥰🥰
@marusukech.5049
@marusukech.5049 2 жыл бұрын
programming task: #include int aver(int total){ int average = total / 5; return average; } int main(){ int subjects[5]; printf("Enter the marks:"); for(int i = 0;i < 5;++i){ scanf("%d", &subjects[i]); } int total; for(int i = 0;i < 5;++i){ total = total + subjects[i]; } int average = aver(total); printf(" Average marks: %d", average); return 0; }
@bandulajagathkumara1038
@bandulajagathkumara1038 Жыл бұрын
I love her accent ❤️☺️
@kkminicrafts4988
@kkminicrafts4988 11 ай бұрын
#include int main(){ double marks[5]; int i; double sum = 0; for(i = 0;i
#20 C Multidimensional Arrays | C Programming For Beginners
10:44
How I would learn to code (If I could start over)
9:16
Jason Goodison
Рет қаралды 4,7 МЛН
Чёрная ДЫРА 🕳️ | WICSUR #shorts
00:49
Бискас
Рет қаралды 3,3 МЛН
Joker can't swim!#joker #shorts
00:46
Untitled Joker
Рет қаралды 38 МЛН
you will never ask about pointers again after watching this video
8:03
Low Level Learning
Рет қаралды 2,1 МЛН
#15  C Functions | C Programming for Beginners
17:21
Programiz
Рет қаралды 202 М.
String In Char Array VS. Pointer To String Literal | C Programming Tutorial
9:58
why do void* pointers even exist?
8:17
Low Level Learning
Рет қаралды 351 М.
#23 C Pointers | C Programming For Beginners
11:01
Programiz
Рет қаралды 128 М.
#18 C Recursion | C Programming For Beginners
5:40
Programiz
Рет қаралды 85 М.
Array Basics | C Programming Tutorial
13:37
Portfolio Courses
Рет қаралды 36 М.
#22  C String Functions | C Programming For Beginners
9:40
Programiz
Рет қаралды 77 М.
C pointers explained👉
8:04
Bro Code
Рет қаралды 157 М.