52 Demo Switch Case
5:04
4 жыл бұрын
51 Switch Case Branch and Control
5:31
50 Demo Dynamic Declaration
4:23
4 жыл бұрын
49 Dynamic Declaration
4:25
4 жыл бұрын
48 Demo   Short Circuit
3:52
4 жыл бұрын
47 Short Circuit
2:42
4 жыл бұрын
45 Else if Ladder
7:31
4 жыл бұрын
44 Display Grades for Student Marks
4:25
43 Find Nature of Quadratic Roots
7:38
42 Demo  Finding Maximum of 3 No
5:03
41 Nested If
7:22
4 жыл бұрын
40 Demo  Compound Condition
3:54
4 жыл бұрын
39 Program using Compound Conditions
8:36
39  Student Exercise #4
1:48
4 жыл бұрын
38 Compound Conditional Statement
5:11
38 1 3  Bill Amount
1:34
4 жыл бұрын
38  Student Exercise #3
1:34
4 жыл бұрын
37 Logical Operators
10:02
4 жыл бұрын
36 Demo   Validation
2:04
4 жыл бұрын
36  Switch   Program using Menu Options
4:40
36  Demo Conditional Statement
4:34
4 жыл бұрын
35 Finding Maximum of 2 Numbers
7:26
34 Conditional Statement   if
6:00
4 жыл бұрын
33  Student Exercise #2
1:33
4 жыл бұрын
32  Student Exercise #1
0:48
4 жыл бұрын
31  Demo enum and typedef
7:49
4 жыл бұрын
31  Enum and Typedef
14:34
4 жыл бұрын
Пікірлер
@pandeykrishna70
@pandeykrishna70 19 күн бұрын
such a very good explanation...
@balu3811
@balu3811 4 ай бұрын
Clear and direct to the point.
@Vasanth_im
@Vasanth_im 9 ай бұрын
Great Lecture, Thanks
@danaromero3931
@danaromero3931 10 ай бұрын
Great video! Very well explained, thank you!
@vm6762
@vm6762 11 ай бұрын
Thanks a lot! Been looking for fast and simple answer just like this one.
@paa0472
@paa0472 Жыл бұрын
Thx, man!
@unpredictabledeathrow
@unpredictabledeathrow Жыл бұрын
This is what i want to do #include<stdio.h> // Purpose : to Delete particular line into the file. void space(int n); int main(){ FILE *fp1, *fp2; int rool; char name[20]; int age; int i = 0; char ch; int delete_line; int line = 0; // write content into the data file first fp1 = fopen("some.txt","w"); do{ printf("%d student ",i+1); printf("Rool : "); scanf("%d",&rool); printf("Name : "); scanf("%s",name); printf("Age : "); scanf("%d",&age); i++; fprintf(fp1,"%d\t%s\t%d ",rool,name,age); }while(i != 3); // reading content into the data file fp1 = fopen("some.txt","r"); if(fp1 == NULL){ printf("Error : 404 "); } else{ ch = getc(fp1); while(ch != EOF){ printf("%c",ch); ch = getc(fp1); } } rewind(fp1); // taking delete line number from the user space(4); printf("Enter the delete line : "); scanf("%d",&delete_line); // open new file to write content from the pervious file without delete line . fp2 = fopen("destination.txt","w"); while((ch = getc(fp1))!= EOF){ ch = getc(fp1); if(ch == ' ') { line++; } if(line != delete_line) { // putc(ch,fp2); // fprintf(fp1,"%d\t%s\t%d ",rool,name,age); } } fclose(fp1); fclose(fp2); return 0; } void space(int n){ for(int i=0; i<=n; i++){ printf(" "); } }
@unpredictabledeathrow
@unpredictabledeathrow Жыл бұрын
Hello, sir i have a question that how can i delete a particular line in a file please sir help me
@TheBuilder
@TheBuilder Жыл бұрын
perfect
@borislawson-placca4344
@borislawson-placca4344 Жыл бұрын
Thank you
@venkateshchintagunti4236
@venkateshchintagunti4236 Жыл бұрын
This Is output?
@riiadada5283
@riiadada5283 3 жыл бұрын
thanks :)
@koooldud6317
@koooldud6317 3 жыл бұрын
I FOUND HIS CHANNEL
@akshaypandey2620
@akshaypandey2620 3 жыл бұрын
please upload/provide links for the remaining videos...... please please please
@Marcus-cf2li
@Marcus-cf2li 3 жыл бұрын
I'm confusing sir. How can I know what are 2 parameters I input in compareTo function?
@sindisss3897
@sindisss3897 4 жыл бұрын
thank youuu. It helped me a lot
@muhammadaamirabbas4291
@muhammadaamirabbas4291 4 жыл бұрын
Thanks alot Sir.
@donaldlee3804
@donaldlee3804 4 жыл бұрын
0:23 sweety-princess.com
@vivanrehan
@vivanrehan 4 жыл бұрын
Just Wow....Great contents ever found
@Codejedi
@Codejedi 4 жыл бұрын
Great video, Keep up the amazing work!