Finding C programming hard? We’ve got you! 🚀Get 60% off on Programiz PRO Lifetime Plan this Black Friday-pay once for skills that last forever. Don’t miss out, it’s a limited-time offer! 👉Grab your discount now: bit.ly/blkfriday-24-yt
#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; }
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
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.
@@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
@@akashmathdevru8618 0 comes when u acess a element that does not exist, random value comes when you access a array index grater than the maximum lenght specified when declared.
Awesome and crisp explanation. Keep making more videos to cover the entire language. Your series is really very crisp ,informational and easily understandable.
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 ❤😊
#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; }
@@yahyaelgandouer3591 I did it like he did it at first but after your comment this is my new code : #include Int main () { Double grade[5] = { 75.55 , 55.55 , 99.55 , 67.65 , 32.22 } Double sum = 0; for ( int i = 0 ; i < 5 ; i++ ) { Sum = sum + grade[i] ; } Double average = sum / 5 ; Printf(" the average grade for the student is %.2f " , sum ) Return 0 ; }
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
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.
[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
#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; }
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; }
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!
#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);
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); }
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; }
The answer is C, 0. Since the Array has been assigned 5 , and only three integers from 0 to 2 have been filled in. Therefore, 3 and 4 will be filled in with 0's.
#include int main() { int mark[5]; printf("Enter marks of 5 subject: "); int sum = 0; for(int i = 0; i < 5; ++i) { scanf("%d", &mark[i]); sum = sum + mark[i]; } int averageMarks = sum/5; printf("average marks is %d", averageMarks); return 0; }
it will return 0,because we created 5 element array with 5 index value 0-4 we not assign any value to index 3 and index 4 so it will return null value which will be zero
// 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; }
#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; }
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; }
Finally, here's my code! :> #include int main() { int marks[5]; float sum; float ave; printf("Enter 5 marks of a student: "); for(int i = 0;i < 5;i++) { int a = i + 1; printf("Subject %d: ", a); scanf("%d", &marks[i]); } sum = marks[0] + marks[1] + marks[2] + marks[3] + marks[4]; ave = sum/5; printf("The sum is: %.2f", sum); printf(" The average is: %.2f", ave); return 0; }
Finding C programming hard? We’ve got you!
🚀Get 60% off on Programiz PRO Lifetime Plan this Black Friday-pay once for skills that last forever. Don’t miss out, it’s a limited-time offer!
👉Grab your discount now: bit.ly/blkfriday-24-yt
#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;
}
@@AbhiramDeshpande-fe1vi I made mine a bit more complex lol.
Please explain about * pattern
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
No a cell or slot in memory can never be empty there may be a junk value
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.
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
@@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
@@akashmathdevru8618 0 comes when u acess a element that does not exist, random value comes when you access a array index grater than the maximum lenght specified when declared.
Awesome and crisp explanation. Keep making more videos to cover the entire language. Your series is really very crisp ,informational and easily understandable.
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 ❤😊
Yes, it is 0, but the reason is not that.
sok tau kau deck
@@JoseCarv0 then what?
I Like your teaching method. keep posting such contents free for the student.
thank you.....
#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;
}
Do the sum in a loop
@@yahyaelgandouer3591
I did it like he did it at first but after your comment this is my new code :
#include
Int main ()
{
Double grade[5] = { 75.55 , 55.55 , 99.55 , 67.65 , 32.22 }
Double sum = 0;
for ( int i = 0 ; i < 5 ; i++ )
{
Sum = sum + grade[i] ;
}
Double average = sum / 5 ;
Printf(" the average grade for the student is %.2f " , sum )
Return 0 ;
}
bogoas giatay oy
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
Thnx broo
Good but its good programming practice that you initialize avg as int avg and then add avg=sum/5 and print it.
I suggest you remove the printf("Entre the marks "); out of the for loop.
I appreciate this. I missunderstood the wording of the quiz and this made me understand what she was asking for
clear, concise and to the point explanation Thank you.
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.
[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
0
Answer:- 0
Garbage Value
0 is the default value for any element not initialized by the user
0 will be the answer bcz size is exceeding the array.
#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;
}
am yet to find best teacher thank you for your content it really makes it easier to learn and grasp info on c programming.
#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;
}
I love her english, so different and unique to grasp even better
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;
}
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!
Haa nhasi ndopandatozonzwisisa ma array after a long time. Well done parohwa basa apa🙌🤝
You are a representation for "Education must be free"
#include
int main()
{
int marks[5];
int i,sum=0,average;
printf("Enter marks of 5 subjects");
for (i = 0; i
One of the best teaching method, please go ahead and make more contents like this
Thanks mam! It really helped me and I love to use this C compiler
Iperhaps one of the greatest teaching on c language fundamentals in India from my experience with teachers
From Nepal*
very easy to understand and is quite informative with good teaching!!!!!🙂🙂🙂😀😀😀
i love it when she says "jero"
Thank you !
Great explanation,Simple but precise and also great initiative on making this videos available to all !
your understanding is so good
Thabks alot this woll surely hwlp me for today HND exams i have .
#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);
}
#include
int main()
{
int i;
double avg;
double marks[5];
printf("Enter marks of 5 subjects:");
for(i=0 ;i
Great and simply explained too good
And the answer is( c) . 0
#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
I Like your teaching method. keep posting such contents free for the student. Thank you answer is 0
#include
int main( )
{ int marks[5], i;
int sum=0;
float avg;
for(i=0;i
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
programming task-
int marks[5];
printf(" Enter the marks of 5 different subjects of a student:");
for (int i=0; i
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;
}
D. Random value
I guess you haven't considered the size of the array, so it is 0.
The output of that code is option (d) Random Value
That's what I thought, apparently their github repository says different.
@@maxwell4466 Can you provide me their gitHub repository link?
hello. I like however you teach or share us about your skills. thank you alot.
ANSWER
#include
int main()
{
int i;
int marks[5];
int total=0;
printf("enter the marks: ");
for(i=0;i
Thank you very much for these videos. Your websites also give excellent content. Keep up the great work.
guyz haru ta nepali po raixan so proud of that
nice class and this are best in business
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;
}
#include
int main() {
int subjmarks[5];
printf("enter marks of 5subjects: ");
for(int s=0;s
I might be wrong but the answer to the question in the end is Random value, option (D)
The answer is C, 0. Since the Array has been assigned 5 , and only three integers from 0 to 2 have been filled in. Therefore, 3 and 4 will be filled in with 0's.
How about in the for loop example? Why did age[5] printed random values instead of 0?
Ans is - D. Random value because we are trying to access uninitialized value
This is the best videos!
thank you very very very much, you help me a lot
#include
int main() {
int mark[5];
printf("Enter marks of 5 subject:
");
int sum = 0;
for(int i = 0; i < 5; ++i) {
scanf("%d", &mark[i]);
sum = sum + mark[i];
}
int averageMarks = sum/5;
printf("average marks is %d", averageMarks);
return 0;
}
it will return 0,because we created 5 element array with 5 index value 0-4 we not assign any value to index 3 and index 4 so it will return null value which will be zero
#include
int main()
{
int i, marks[5];
for(i=0; i
I really like your explanation.....
Excellent to understanding... Tqsm mam...
Arrays is very easy with you.
I love programmiz😊😊😊 5:11
Thank you mam 😊
// 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;
}
Animo joel tu puedes
best channel ever thank you hanım abla
in the for loop you had an input of 16 but printed out as 6 in the compiler, what could be the problem
#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;
}
Assomone explanation mam👍👍👍👍
Thank you so much ❤
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);
I love her accent ❤️☺️
Thank you so much for the video !
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;
}
i found it interesting 😊 i like it
#include
int main(){
int marks[5];
int total=0;
for(int i=0;i
thanks sis
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;
}
Nice explanation mam
Thanks a bunch.
Finally, here's my code! :>
#include
int main()
{
int marks[5];
float sum;
float ave;
printf("Enter 5 marks of a student:
");
for(int i = 0;i < 5;i++)
{
int a = i + 1;
printf("Subject %d: ", a);
scanf("%d", &marks[i]);
}
sum = marks[0] + marks[1] + marks[2] + marks[3] + marks[4];
ave = sum/5;
printf("The sum is: %.2f", sum);
printf("
The average is: %.2f", ave);
return 0;
}
Happy programming 🎉
Nice my teacher 🙏🙏🎉🎉
I understand this more than from my class lol.
Great Explanation, Thank you for the same.
PROGRAMINNG TASK :-
#include
int main(){
int sub[5];
printf("enter the marks of five subjects(0-100) :
");
int total=0;
for(int i=0;i
I executed this same code but unable to get average as output
I executed this same coding but unable to get average as output
#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
at 11.30 why did the output come as 6 instead of 16 ?
I did notice too. Just guessing, but might be a bug in the compiler?
Nice explanation than college! 💪🛡️
so good👌
Superb explanation 🙏
int main()
{
int subject[5],i,Totalmark,average;
printf("enter the subject marks:");
for( i=0;i
#include
int main(){
double marks[5];
int i;
double sum = 0;
for(i = 0;i
At 11:30 it printed 6 instead of 16 .. Why? 😳
Same question too
Does the same at 12:09. I think it's just a bug in the compiler.
Thank you mam give more things of array,🥰🥰
int main() {
int marks[5],sum,avg,x;
printf("Please enter the grades of 5 students:
");
for(x=0;x
thanks
thanks a lot
Thankyou!
Thank you.
very nice video 😊😊😊❤❤❤🙏mam
i love your videos
Great