Dear Jenny, May you please make some videos on: - C pre-processors - macros - Storage classes in C (auto, extern, static, register) - Command-line arguments in C Looking forward to a more comprehensive series like this on OOP (Java, C++) and Computer Architecture too! Thank you very much for your time and effort in training us🙏 Also, I am so happy and proud of a lady like you with this much confidence👏 And keep up the good work 💪
This is your last video (23.03.2021) and i just wanted to say that i'm soo glad that i found your playlist on data structures and algorithms, i was hopeless about this subject... I think you will help a looot of future students, like millions.. so keep the good work on, and teach always in the way you do: with knowledge and clearity, quality is always > then quantity. Gently from Italy.
#include Void main() { int s; Enum subjects{maths, science,history,English}; printf("enter the subjects:"); Scanf("%d",&s); Switch(s) { case maths:printf("maths"); break; case science:printf("science"); break; case history:printf("history"); break; case english:printf("english"); break; default:printf("not in list"); break; } } O/P enter the subjects:3 english
You help me throughout my course in Electrical Engineering, now I'm doing my final year. Thank you Jenny, all the love from Azania(so called south africa)
#include enum gender {Female=0, Male=1, Others=2}; int main() { int value; printf("Enter your gender code to get the discount: "); printf("0 for Male, 1 for Female and 2 for Others "); scanf("%d", &value); switch (value) { case Female: printf("Your discount: 50 percent "); break; case Male: printf("Your discount: 40 percent "); break; case Others: printf("Your discount: 60 percent "); break; default: printf("Please enter a valid code "); break; } return 0; }
Assignment of enum in switch case: #include //Define enum enum Day {Sun, Mon, Tue, Wed, Thur, Fri, Sat}; int main(void) { //Declare enum enum Day Today; //Assign to variable Today=Fri; //enum in switch case switch(Today) { case Sun: printf("Today is Sunday and value is: %d",Today); break; case Mon: printf("Today is Monday and value is: %d",Today); break; case Tue: printf("Today is Tuesday and value is: %d",Today); break; case Wed: printf("Today is Wednesday and value is: %d",Today); break; case Thur: printf("Today is Thursday and value is: %d",Today); break; case Fri: printf("Today is Friday and value is: %d",Today); break; case Sat: printf("Today is Saturday and value is: %d",Today); break; default: printf("Invalid day"); } return 0; }
We can't refer 'case 'with string like "Sunday" etc.....it only accepts either integer or char constants .... .overall I loved the way she explains things...she has covered most of doubts which can strike in our minds while studying this🤗🤗🤗
#include #include void main() { enum Shape{ Circle,Triangle,Rectangle }; printf("Hi Choose Shape!!! 0 for Circle 1 for Triangle 2 for Rectangle "); int ch; scanf("%d",&ch); switch(ch) { case Circle:printf(" You have choosen Circle"); break; case Triangle:printf(" You have choosen Triangle"); break; case Rectangle:printf(" You have choosen Rectangle"); break; default:printf(" Wrong Character Entered"); break; } }
Hi ma'am I am learning c from your videos it helped me alot..i am still learning at this late night..i thought I should take a 10min break and saw your funny videos I was stunned by your behind the scenes video which was uploaded a couple of years ago and I am stunned by your effort on teaching us (I didn't know it was that hard)i am sure there is a lot more hardwork which you can't really make a video and show us ..i just wanna say thank you from my heart ..lots of love from Kerala...❤️ A proud student😻
enum is a part of C++, if you use C Compiler it will not be work.... Lot of users use C++ compilor for C programming... So it is Like Jurcy cow concept to teach enum in C instead of C++
Hii mam I have a doubt in this, #include Enum language {c,java=3,python,php}; main(){ float arr[c+php]={1.0f,2.1f,3.2f,4.3f,5.4f}; enum language lang=python; Printf(“% .1f”,arr[lang>>1+1]); } Output: 2.1 How this output is possible (I need explanation for this mam)
Dear mam can u make videos on c pre processor commands and in data structures skip lists . On skip lists no proper video is made I fetched many all are confusing
Believe in yourself, take on your challenges, dig deep within yourself to conquer fears. Never let anyone bring you down. You got to keep going.”
Dear Jenny, May you please make some videos on:
- C pre-processors
- macros
- Storage classes in C (auto, extern, static, register)
- Command-line arguments in C
Looking forward to a more comprehensive series like this on OOP (Java, C++) and Computer Architecture too! Thank you very much for your time and effort in training us🙏 Also, I am so happy and proud of a lady like you with this much confidence👏
And keep up the good work 💪
Command line argument in c
This is your last video (23.03.2021) and i just wanted to say that i'm soo glad that i found your playlist on data structures and algorithms, i was hopeless about this subject...
I think you will help a looot of future students, like millions.. so keep the good work on, and teach always in the way you do: with knowledge and clearity, quality is always > then quantity. Gently from Italy.
#include
Void main()
{
int s;
Enum subjects{maths, science,history,English};
printf("enter the subjects:");
Scanf("%d",&s);
Switch(s)
{
case maths:printf("maths");
break;
case science:printf("science");
break;
case history:printf("history");
break;
case english:printf("english");
break;
default:printf("not in list");
break;
}
}
O/P
enter the subjects:3
english
The best explanation on youtube, thank you very much. Now I understood how it works and why the enum❤❤❤
It’s great that you are able to condense a time consuming concept to 20 mins.
You help me throughout my course in Electrical Engineering, now I'm doing my final year. Thank you Jenny, all the love from Azania(so called south africa)
The way you teach is really very nice and understandable, so thank you so much.
It's a good video about enum type thanks
i study in nit.......but i must say u teach better than our phd holder professors
Asi teacher ho toh ma roz class attend karunga mast samjhaya. Mam apne ❤🕊️
Your teaching skills very nice
As a lecturer, i am fond of with ur lectures. 👍
#include
enum gender {Female=0, Male=1, Others=2};
int main() {
int value;
printf("Enter your gender code to get the discount:
");
printf("0 for Male, 1 for Female and 2 for Others
");
scanf("%d", &value);
switch (value) {
case Female:
printf("Your discount: 50 percent
");
break;
case Male:
printf("Your discount: 40 percent
");
break;
case Others:
printf("Your discount: 60 percent
");
break;
default:
printf("Please enter a valid code
");
break;
}
return 0;
}
I think I got the perfect teacher for programming!!!
one of very respected teachers to me !!
No one can explain better than u mam,ur teaching experience is too good mam,so plz 🙏 do videos on all concepts.
ma'am you're examples are so bad to understand
but you're teaching is amazing!!!
Love you mam ❤❤
I cleared 5th sem with help of your video❤
Hello
you are EEE student am i right?
@@arunprasanth1186 No I am CSE student and passout in this year.
I am thankful for all of those who said NO to me. It’s because of them I’m doing it myself.”
Great teacher regarding
I want a series like this on Discrete Mathematics. I hope you will think about it.
hello mam !
Good evening🥰
Thanku for this Amazing session🙏🤩
@@theheronclub2001 🙏
#include
int main()
{
enum { sun, mon, tue, wed, thr, fri, sat};
int a;
printf("enter any day");
scanf("%d",&a);
switch(a)
{
case sun: printf("have fun");
break;
case mon:printf("show up");
break;
case tue: printf("show up everyday");
break;
case wed: printf("show up everyday");
break;
case thr: printf("keep showing up");
break;
case fri: printf("last mile, cheers");
break;
case sat: printf("wohoo!! you did it:-)");
break;
default: printf("try typing 0 to 6");
}
}
Assignment of enum in switch case:
#include
//Define enum
enum Day {Sun, Mon, Tue, Wed, Thur, Fri, Sat};
int main(void)
{
//Declare enum
enum Day Today;
//Assign to variable
Today=Fri;
//enum in switch case
switch(Today)
{
case Sun:
printf("Today is Sunday and value is: %d",Today);
break;
case Mon:
printf("Today is Monday and value is: %d",Today);
break;
case Tue:
printf("Today is Tuesday and value is: %d",Today);
break;
case Wed:
printf("Today is Wednesday and value is: %d",Today);
break;
case Thur:
printf("Today is Thursday and value is: %d",Today);
break;
case Fri:
printf("Today is Friday and value is: %d",Today);
break;
case Sat:
printf("Today is Saturday and value is: %d",Today);
break;
default:
printf("Invalid day");
}
return 0;
}
Mam please make a video on command line argument....🙏🙏
what is command line argument??
Being a doctor it's very difficult to focus on what she is teaching but still I am trying to learn. 😂😂 She is gorgeous 🤩
thank you
We can't refer 'case 'with string like "Sunday" etc.....it only accepts either integer or char constants ....
.overall I loved the way she explains things...she has covered most of doubts which can strike in our minds while studying this🤗🤗🤗
Great explanation mam 💯👍
Mam really you are looking so.... Cute while teaching 😍
Plz don't left without replying
thank you mam ji😍😍😍😍😍
So my roll number is 45. thank you.
Volatile,extern,
Ap bahut accha padhate ho mam
bhai pahle English sikhni pdegi ..bol kya rhi h ..smaj me nhi aa rha muje to
mam your lectures are really amazing request u to pls upload videos on macros in c programming
Please can you make a video on command line arguments and static libraries in C programming
The teacher we want
Thank you so much Mam.
Pls upload a video on setjmp and longjmp
Mam ,make a video on command line arguments
Thank you mam for video
Could You please explain about command line arguments in C
Very nice video
Thanks mam
Mam ASCII Code is the topic that we want. Thank You
Mam can u please upload a video class on command line arguments plzzzzzzz .........
#include
#include
void main()
{
enum Shape{
Circle,Triangle,Rectangle
};
printf("Hi Choose Shape!!!
0 for Circle
1 for Triangle
2 for Rectangle
");
int ch;
scanf("%d",&ch);
switch(ch)
{
case Circle:printf("
You have choosen Circle");
break;
case Triangle:printf("
You have choosen Triangle");
break;
case Rectangle:printf("
You have choosen Rectangle");
break;
default:printf("
Wrong Character Entered");
break;
}
}
Maam please explain structures with functions
you miss comment line arguments and preprocessor ma'am
Pls make a video on commanfline arguments
Self referential structure 😢😢
thanks maam love from satyajit .🙃
Good mam MyUstadG ki tra ap k method be bot acha ha
Classic explanation. Thanks jenny :)
Mam can we take enum value by scanf function?
Nice explanation 👍👍👍
Hello
madam please teach threadung and multthreading in c
Lub u Jennie ❤️
Please create a project in C
Hi ma'am I am learning c from your videos it helped me alot..i am still learning at this late night..i thought I should take a 10min break and saw your funny videos I was stunned by your behind the scenes video which was uploaded a couple of years ago and I am stunned by your effort on teaching us (I didn't know it was that hard)i am sure there is a lot more hardwork which you can't really make a video and show us ..i just wanna say thank you from my heart ..lots of love from Kerala...❤️
A proud student😻
Hello 👋👋😍😍
@@Shivammishrachemistryfaculty hello🙂
@@N1v3dh nice dp
@@Shivammishrachemistryfaculty thank you dear😌😌❤️
@@Shivammishrachemistryfaculty you look amazing too😻
But maam in a class more then one Rahul, but Roll no is unique, so roll no is good.🤗
01:45
Super teach madam,,, and you are also so beautiful
Real time example of enum is
Ma’am is this playlist complete ?
enum is a part of C++, if you use C Compiler it will not be work.... Lot of users use C++ compilor for C programming... So it is Like Jurcy cow concept to teach enum in C instead of C++
mam can explain how to use scanf for enum for user
Kindly is there any video about variadic functions in C ? Kindly do one ..... thanks for the great work you are doing
And also for linked lists
Mam please start telling about java programs
Ma'am you are looking so sweet today 😑😪😌
Good evening madam
I think you forgot bitfield.....
Mam how many topics we are left over in C please tell me mam
😊😊
0
Please say about volatile keyword
Hii mam I have a doubt in this,
#include
Enum language {c,java=3,python,php};
main(){
float arr[c+php]={1.0f,2.1f,3.2f,4.3f,5.4f};
enum language lang=python;
Printf(“% .1f”,arr[lang>>1+1]);
}
Output: 2.1
How this output is possible (I need explanation for this mam)
You are a good koschan
i think;
lang>>1 is 2
lang>>1+1 is 1
because machine starts reading from right side
it thinks
lang>>(1+1)
Lang=4
Arr[4>>1+1]
+ Have high precedence than >>
So first 1+1=2
Then 4>>2=1
Arr[1]=2.1
Mam your are left with one more concept that is bit filed
I am here Just to watch your cuteness 🥰
4th sem computer science video links unnaya
Please create a project in c
Dear mam can u make videos on c pre processor commands and in data structures skip lists . On skip lists no proper video is made I fetched many all are confusing
Ma'am internship video please......
Mam please start C++
madam please teach thereding and multthreding ijn C
Mam I'm here Rahul 😂
Mam, javascript making video
Mam plz start c++
Madam ji mujhe notes chahiye mca ka
Hi mam how are you?
Hlo jenny mam u r superb mam
Hello
@@Shivammishrachemistryfaculty hii
@@akhilmittal3283 kaha se ho aap ??🥰
@@Shivammishrachemistryfaculty hmm
Data seince course in you video upload mam
Mam who is rahul😅
❤❤❤
Love you medam
First comment
Has someone told you that you looks and speaks like Adah sharma
First viewer 🥰
Hame to English aati hi nhi 😢😢
First view
Itne saal se pada raho ho... C language kitne badi hai ... Abhi tak complete kyu nahi ho oaye
English sikhni pdegi pahle smj me nhi aa rha kuch ..kya bol rhi h