Normie Coder
Normie Coder
  • Видео 31
  • Просмотров 2 328

Видео

FileHandling using dynamic memory allocation in C || video 24 || normie coder
Просмотров 1124 часа назад
in this video i explained you how to do file-handling using dynamic memory allocation in c
Dynamic memory allocation part2 (code) in C || video 23 || normie coder
Просмотров 117 часов назад
in this video i have explained the topics of calloc malloc and realloc in easy language which are subtopics of dynamic memory allocation...
dynamic memory allocation (theory) in C|| video 22|| normie coder
Просмотров 467 часов назад
YAHA DEKH YAHA H THEORY ISS VIDEO KI BHAI! //what dynamic memory allocation is: // Memory that is allocated during runtime when the program needs it, instead of defining it beforehand. // int arr[25]; // Why Use It? // When you don't know how much memory you'll need upfront (e.g., user input, growing arrays, handling files). // // More efficient memory usage compared to fixed-size arrays. // St...
Memory in C (for better understanding) || video 21 || normie coder
Просмотров 389 часов назад
in this video i have explained the topic of Memory in C in a little deep for better understanding of people.
File handling (readFile) in C || video 20 || normie coder
Просмотров 2314 часов назад
in this video i have explained the subtopic(readfile) of the topic file handling in easy language
File handling(writeFile) in C || kayamat ki ghadi || video 19
Просмотров 4916 часов назад
in this video i have explained about file handling in c in easy language
2D array in C || video 18 || normie coder
Просмотров 4919 часов назад
in this video i have explained about 2D arrays in c in easy language...
Storage classes in C || video 17 || normie coder
Просмотров 6821 час назад
in this video i have explained the topic of storage classes in easy langauge
Recursion in C || video 16 || normie coder
Просмотров 69День назад
in this video i have tried to explain you recursions in easy langauge
String in C || video 15 || normie coder
Просмотров 21День назад
in this video i have explaine about string in easy language
Array in C || video 14 || normie coder
Просмотров 92День назад
in this video i have explained what is array in c
Functions in c || video 13 || normie coder
Просмотров 402День назад
in this video i have explained how the functions in c works in easy language
Pointer in C || video 12 || normie coder
Просмотров 9614 дней назад
in this video i have explained the use of pointers in c and & in scanf
format specifiers in C || video 11 || normie coder
Просмотров 9214 дней назад
in this video i have explained how format specifiers work in c
Operators in C || video 10 || normie coder
Просмотров 14214 дней назад
Operators in C || video 10 || normie coder
While and do while loop in C || video 9 || normie coder
Просмотров 2114 дней назад
While and do while loop in C || video 9 || normie coder
for loop in C || video 8 || normie coder
Просмотров 1714 дней назад
for loop in C || video 8 || normie coder
Switch statement in C || video 7 || normie coder
Просмотров 2314 дней назад
Switch statement in C || video 7 || normie coder
nested if else in C || video 6 || normie coder
Просмотров 714 дней назад
nested if else in C || video 6 || normie coder
if else statement || video 5 || normie coder
Просмотров 1414 дней назад
if else statement || video 5 || normie coder
Type conversion in C || video 4 || normie coder
Просмотров 1014 дней назад
Type conversion in C || video 4 || normie coder
data types in c || video 3 || normie coder
Просмотров 2314 дней назад
data types in c || video 3 || normie coder
declaring Constant || C tutorial 2 || normier coder
Просмотров 2814 дней назад
declaring Constant || C tutorial 2 || normier coder
C tutorial video #1 Normie Coder coding tutorial
Просмотров 14921 день назад
C tutorial video #1 Normie Coder coding tutorial
Return of the dead one...
Просмотров 9421 день назад
Return of the dead one...
shooting a dirt block ,but i made it look cool #shorts
Просмотров 42Год назад
shooting a dirt block ,but i made it look cool #shorts
Glitch in the algorithm| How to get famous on YouTube | quick* #tutorials #funny
Просмотров 37Год назад
Glitch in the algorithm| How to get famous on RUclips | quick* #tutorials #funny
how paper beats scissors, experiment video lol.
Просмотров 1192 года назад
how paper beats scissors, experiment video lol.
useless bubble gum blowing tutorial |part 2| how to blow a bubble gum
Просмотров 1862 года назад
useless bubble gum blowing tutorial |part 2| how to blow a bubble gum

Комментарии

  • @studyalone609
    @studyalone609 День назад

    Bhai HTML and css teach

  • @danknormie2276
    @danknormie2276 День назад

    #include <stdio.h> #include <stdlib.h> int main(){ const char *filepath = "C:\\Users\\Dell\\OneDrive\\Desktop\\chotabheem.txt"; FILE *file = fopen(filepath,"r"); if(file==NULL){ printf("ERROR:chutiye sahi location daal"); return 1; } fseek(file,0,SEEK_END); int filesize = ftell(file); rewind(file); char *buffer = (char*)calloc((filesize+1),sizeof(char)); if(buffer==NULL){ printf("ERROR:memory alloation failed bc"); fclose(file); return 1; } fread(buffer,sizeof(char),filesize,file); buffer[filesize] = '\0'; printf("FILE CONTENT %s",buffer); free(buffer); fclose(file); return 0; }

  • @danknormie2276
    @danknormie2276 День назад

    #include <stdio.h> #include <stdlib.h> int main(){ int *arr = (int *)calloc(5,sizeof(int)); if(arr==NULL){ printf("memory allocation has been failed "); } printf("initial values: "); for(int i = 0; i<5; i++){ arr[i]= i+1; printf("%d ",arr[i]); } printf(" "); arr = (int*)realloc(arr,10*sizeof(int)); printf("values after reallocation "); for(int i = 0;i<10;i++){ arr[i] = (i+1)*2; printf("%d ",arr[i]); } printf(" "); free(arr); printf("the memory is free now "); return 0; }

  • @danknormie2276
    @danknormie2276 День назад

    //what dynamic memory allocation is: // Memory that is allocated during runtime when the program needs it, instead of defining it beforehand. // int arr[25]; // Why Use It? // When you don't know how much memory you'll need upfront (e.g., user input, growing arrays, handling files). // // More efficient memory usage compared to fixed-size arrays. // Stack // The stack is like a to-do list where temporary variables (e.g., function parameters, local variables) are stored automatically. // Fast but has a fixed size and limited memory. // Example: // c // int x = 10; // Stored on the stack // Memory is automatically freed when the function ends. // Heap // The heap is like a warehouse where you can request and release memory as needed (using malloc, calloc, and realloc). // Flexible but slightly slower because you manage the memory yourself. // Example: // c // int *ptr = (int *)malloc(10 * sizeof(int)); // Stored on the heap // You must free the memory manually with free(). // Key Difference // Stack: Managed automatically, used for short-term storage. // Heap: Managed manually, used for dynamic (long-term) memory needs. // malloc() // Allocates a block of memory of a specified size. // // int *arr = (int *)malloc(5 * sizeof(int)); // Space for 5 integers // Explain how it returns a pointer to the first memory block. // int *arr = (int *)malloc(5 * sizeof(int)); // calloc() // Allocates memory and initializes all bytes to 0. // int *arr = (int *)calloc(5, sizeof(int)); // Space for 5 integers, all set to 0 // Mention that it's useful for clean initialization. // int *arr = (int *)calloc(5, sizeof(int)); // realloc() // Resizes an already allocated memory block. // arr = (int *)realloc(arr, 10 * sizeof(int)); // Resize to hold 10 integers // Great for situations where your program grows or shrinks dynamically. // arr = (int *)realloc(arr, 10 * sizeof(int));

  • @kchallengewithoutvideo-qy8ef
    @kchallengewithoutvideo-qy8ef День назад

    L mera😂

  • @bladeplayz4157
    @bladeplayz4157 2 дня назад

    Yeah bhi theek hai 🌝

  • @DRM_codes
    @DRM_codes 3 дня назад

    gajab intro tha bc

    • @danknormie2276
      @danknormie2276 2 дня назад

      2 big teachers having an interaction...lol

  • @teentagertalks3340
    @teentagertalks3340 4 дня назад

    your videos are awesome but pls bring c++ series as well

  • @danknormie2276
    @danknormie2276 4 дня назад

    //memory : memory is an array of bytes in ram (street) //memory block: its single byte in the memory (house) //memory address: its teh address of the memory block(house address) #include <stdio.h> int main(){ double a = 'X'; double b[3]; printf("%d bytes ",sizeof(a)); printf("%d bytes ",sizeof(b)); printf("%p ",&a); printf("%p ",&b); return 0; }

  • @Del-x6c
    @Del-x6c 5 дней назад

    Bhai Mai 3 Mahine bad c restart kar rha hu Pehle hi Maine c intermediate tak padh li thi socket server jaise projects bhi Kiya the ab c++ Sikh rha hu par c ka jyada confidence nhi aarha kya karu

    • @danknormie2276
      @danknormie2276 4 дня назад

      bhai bohot to h... sockets server to mujhe khud nahi aata C me or mai yaha ye video banara hu, tumhe to confident hona chahaiye ki tumne C me itna sab seekh liya c ko to jabki log bass base clear karne ke liye seekhte h baad me dusri language parr shift ho jate h or unme advance level topics karte h... what you have done is more than enough only bhai...

  • @danknormie2276
    @danknormie2276 6 дней назад

    #include <stdio.h> int main(){ FILE *file = fopen("C:\\Users\\Dell\\OneDrive\\Desktop\\chotabheem.txt","r"); char buffer[255]; while(fgets(buffer,255,file)!=0){ printf("%s ",buffer); } fclose(file); return 0; }

  • @danknormie2276
    @danknormie2276 7 дней назад

    ye le code... #include <stdio.h> int main(){ FILE *file = fopen("C:\\Users\\Dell\\OneDrive\\Desktop\ andi.txt","w"); fprintf(file,"meri file aayi desktop pe..."); fclose(file); if(file == NULL){ printf("location h hi nahi bc dekh le ek baar dhang nahi to file nhi likh payega or teri bandi ke saamne beijaati ho jayegi"); } else{ printf("file banngi londe ki, damn!"); } remove("C:\\Users\\Dell\\OneDrive\\Desktop\ andi.txt"); return 0; }

  • @BalajiKalaskar-p3o
    @BalajiKalaskar-p3o 7 дней назад

    Bhai java start kro ye ata h

  • @RahulGupta-z1f
    @RahulGupta-z1f 8 дней назад

    ye wali playlist me apne grp me bhejra

    • @danknormie2276
      @danknormie2276 8 дней назад

      arrey dhanybad bhai tujhe bhi bulaunga 10 million dollar wale challange me jab 100 million subs ho jayege...

  • @RahulGupta-z1f
    @RahulGupta-z1f 8 дней назад

    abe ek 480p wali quality bhi rakha kr

    • @danknormie2276
      @danknormie2276 8 дней назад

      arrey bro patani youtube me kya aag lagi h 480p wala option hi nhi dera...

  • @nowayhome8754
    @nowayhome8754 8 дней назад

    Bhai 4d array he kya

    • @danknormie2276
      @danknormie2276 8 дней назад

      bhai ye sab matrix h... escape the matrix.

  • @devanshukumar3172
    @devanshukumar3172 8 дней назад

    Bhai tera thumbnail bada attractive hai

  • @ankitxd01
    @ankitxd01 8 дней назад

    gyan 1% benchoo 99%

  • @originalcontentcreator7
    @originalcontentcreator7 8 дней назад

    Bhai mujhe 3D array sikhni thi is zamane mai 2d purana ho gaya

  • @danknormie2276
    @danknormie2276 8 дней назад

    ye le taple... #include <stdio.h> // in a 2d array every element is a array int main(){ // int numbers[2][3] = { // { , , }, // {4,5,6}, // }; int numbers[3][3]; int lallunumbers[3][3]; int balaknumbers[3][3]; numbers[0][0] = 1; numbers[0][1] = 2; numbers[0][2] = 3; numbers[1][0] = 4; numbers[1][1] = 5; numbers[1][2] = 6; numbers[2][0] = 7; numbers[2][1] = 8; numbers[2][2] = 9; lallunumbers[0][0] = 1; lallunumbers[0][1] = 2; lallunumbers[0][2] = 3; lallunumbers[1][0] = 4; lallunumbers[1][1] = 5; lallunumbers[1][2] = 6; lallunumbers[2][0] = 7; lallunumbers[2][1] = 8; lallunumbers[2][2] = 9; int row = sizeof(balaknumbers)/sizeof(balaknumbers[0]); int col = sizeof(balaknumbers[0])/sizeof(balaknumbers[0][0]); printf("row:%d ",row); printf("col:%d ",col); for(int i = 0; i<row; i++){ for(int j = 0; j<col; j++){ printf("%d ",balaknumbers[i][j] = numbers[i][j]+lallunumbers[i][j]); } printf(" "); } return 0; }

  • @ShauryaSingh-cd5kf
    @ShauryaSingh-cd5kf 8 дней назад

    bhai sahi bakchodi me padha diya

  • @AzanAli-gf2eb
    @AzanAli-gf2eb 9 дней назад

    Hacking kese kare bhai ab

  • @Leviethal22
    @Leviethal22 9 дней назад

    bhai konse year mein hai??, maza to kaafi aata hai college mein dosto ke saath video dekhne mein

    • @danknormie2276
      @danknormie2276 8 дней назад

      bhai first semester hi chalra abhi to mera...

  • @surii.....
    @surii..... 9 дней назад

    bhai aese hi dsa krva de

    • @danknormie2276
      @danknormie2276 9 дней назад

      arrey RSS walo ka support hi to chahiye bass dsa bhi ho jayega bro...

    • @surii.....
      @surii..... 9 дней назад

      @danknormie2276 putin bhai bhi he usme apne ( Russian hacker ek dum )

  • @goldyyyyyxysmabBsb
    @goldyyyyyxysmabBsb 9 дней назад

    bhai pass kara de yaar kal exam h teri video dekh raha hu subah se 🔥🔥🔥🔥

    • @danknormie2276
      @danknormie2276 9 дней назад

      bhai tere to kal ke exam me lode lagne wale h pakke... lol but koi na tereko pakka bulaunga 10 million dollar wale challenge me

  • @originalcontentcreator7
    @originalcontentcreator7 9 дней назад

    SPOT RESERVED

  • @originalcontentcreator7
    @originalcontentcreator7 9 дней назад

    MUJHE BULHANA BHAI 10 MILLION DOLLAR WALHE CHALLENGE MAI...

  • @danknormie2276
    @danknormie2276 9 дней назад

    ye video laptop ke mic se record karri h jisse awaj na kate to cooperate karr le thoda or ye le code // Scope: Where the variable can be accessed in the program (e.g., within a block, a function, or globally). // Lifetime: How long the variable exists in memory (e.g., until the function ends, or for the entire program execution). // Storage location: Where the variable is stored (e.g., in the CPU registers or in the memory). // Default initialization: Whether the variable is initialized by default and what its default value is // auto // register // static // extern #include <stdio.h> int func(){ auto int counter = 0; counter++; printf("counter:%d ",counter); } int main(){ func(); func(); return 0; } // #register #include <stdio.h> int func(){ register int counter = 0; for(int i = 0; i < 10; i++){ counter++; printf("counter:%d ",counter); } } int main(){ func(); return 0; } // #static #include <stdio.h> static int counter = 0; int chutiya(){ counter--; printf("counter:%d ",counter); } int func(){ counter++; printf("counter:%d ",counter); } int main(){ func(); func(); chutiya(); printf("Counter:%d",counter); return 0; } // #exter 1 #include <stdio.h> int counter = 0; int func(){ counter++; printf("counter:%d ",counter); } // #extern 2 #include<stdio.h> extern int counter; extern int func(); int main(){ func(); func(); func(); func(); func(); }

  • @goldyyyyyxysmabBsb
    @goldyyyyyxysmabBsb 10 дней назад

    lesgooooooooooooo🔥🔥🔥🔥🔥

    • @danknormie2276
      @danknormie2276 10 дней назад

      bhai ye video dekh kaise li tune... isse to mai khud na dekhna chahu wapas... jo bhi ho bhai dill se thank you... lol

  • @goldyyyyyxysmabBsb
    @goldyyyyyxysmabBsb 10 дней назад

    🔥🔥🔥🔥

  • @BobBuilder-k2x
    @BobBuilder-k2x 10 дней назад

    Bhay aap bhoot aage jaoge mera ashirwad aapke saath hai✋️

    • @danknormie2276
      @danknormie2276 10 дней назад

      koi nhi bro agar galti se aage chala gaya to tujhe apne 10 million dollar wale challange me bula lunga firr tu usse jeet jaiyo firr dono bhai aage pohoch jayege... lol

    • @Supoza_bm17
      @Supoza_bm17 8 дней назад

      @@danknormie2276 waah kya soch hai re tari 😅🤣

  • @RareWebsites
    @RareWebsites 10 дней назад

    Mere vs code me c chalta he nhi pura Semester online compiler me coding kiya . Ye mingw kya hota hai gcc kya hota hai

    • @better_than_apple
      @better_than_apple 10 дней назад

      Mujhe bhi nahi pata lekin mene tutorial copy karke daaldiya apne pc mai harr ek step fir chal gaya

    • @danknormie2276
      @danknormie2276 10 дней назад

      bhai dekh gcc tera compiler h jiske through tera c ka code compile hota h or dekh usse agar tujhe download karna h to ye le iss bande ne bataya hua h kaise download karna h ruclips.net/video/kEEx31DQC2M/видео.htmlsi=b8K9sRG7ygQ8TAyD or agar ye link parr click nhi hora to search karr le Install & Configure VS Code With MinGW Compiler C/C++ Tutorial Hindi kyuki yaha batana muskil h ki kaise karna h sab kuch ...

  • @better_than_apple
    @better_than_apple 10 дней назад

    Samajh agaya last mai bhai❤️👍

    • @danknormie2276
      @danknormie2276 10 дней назад

      bc jab edit karra tha mujhe khud samjh nhi aara tha tu kaise samajh gaya... lol

    • @better_than_apple
      @better_than_apple 10 дней назад

      Ha samajh gaya jaise taise tumhe bhai ye batana chahiye tha ki jo return a* hai woh Naya function call karke usme a ki value 1 minus karke pass karne ke baad jo uski return value aayegi usse a* se multiply karega. Bas yehi confuse ho rha tha bhencho a* multiply kis se hoga mujhe laga a-1 hokar a se hi multiply hoga magar bhai tumne ye chiz ek baar bhi mention nahi ki jitna mene notice kiya😢❤

  • @better_than_apple
    @better_than_apple 10 дней назад

    #inlclude <stdiobhenchoh>

  • @shahidyasin_03
    @shahidyasin_03 11 дней назад

    🤣🤣🤣

  • @shawwttyyy
    @shawwttyyy 11 дней назад

    vs code ko ubuntu wsl pr set kr and process bta !! prodigy level programming krugi!!

    • @danknormie2276
      @danknormie2276 10 дней назад

      bhai mai anpadh hu mujhe na aata ye sab...

    • @shawwttyyy
      @shawwttyyy 10 дней назад

      @@danknormie2276 sir ji aap prodigy ho , btw any dc server or ig???

    • @danknormie2276
      @danknormie2276 10 дней назад

      @@shawwttyyy no ig, i have escaped the matrix bro...but mai sochra tha banaunga ig waha bhi video upload karr dunga but mai bohot aalsi hu or discord khole hue jamana ho gaya... time hi nhi h...

    • @shawwttyyy
      @shawwttyyy 10 дней назад

      @@danknormie2276 dammm , escaping matrix then coming back to it ?? Downfall hogya I asked for discord for better questions solving and helping each other But looking forward to whatever you'll do!!

  • @shawwttyyy
    @shawwttyyy 11 дней назад

    c++ mai code ke ke sikha alsob explain kr!!

    • @danknormie2276
      @danknormie2276 10 дней назад

      bhai c++ to abhi mujhe khud bhi nhi aaati... agle semester me seekhunga tab bana dunga abhi react me L lage pade h to saath saath c++ nahi seekh sakta C to majboori h islilye aati h kyuki exam ke liye bhi padhni padti h... baki comment ke liye dhanybad geeli puchi to you agar tu londa h to... otherwise sorry... lol

    • @shawwttyyy
      @shawwttyyy 10 дней назад

      @@danknormie2276 hahah cute , flying geeli puchi back !! understandable , c meine dhang sai nhi pdhi thi toh abb yhi dekh leti hu

  • @lunatic2797
    @lunatic2797 11 дней назад

    I request God to please not recommend this channel to me again. 😂😂 totally bullshit

  • @originalcontentcreator7
    @originalcontentcreator7 12 дней назад

    Brain Fog Showing its effects

  • @TheVash69
    @TheVash69 12 дней назад

    Bhai in 2 saalo me retardation kese badha ke aaya💀💀

  • @danknormie2276
    @danknormie2276 12 дней назад

    #include <stdio.h> int factorial(int a){ if(a == 0|| a==1 ){ return 1; } return a*factorial(a-1); } void helloworld(){ printf("hello baby doodh peelo"); helloworld(); } int main(){ int n = 5; helloworld(); }

  • @originalcontentcreator7
    @originalcontentcreator7 12 дней назад

    seekh li bhai string

  • @danknormie2276
    @danknormie2276 12 дней назад

    #include <stdio.h> int main(){ char str[] = "hello pyare babu 569 !@#"; int size = sizeof(str)/sizeof(str[0]); for(int i = 0; i <size ; i++){ printf("%c ",str[i]); } return 0; }

  • @danknormie2276
    @danknormie2276 12 дней назад

    #include <stdio.h> // 1000 1001 1002 1003 1004 // 1 2 3 4 5 int main(){ int arr[] = {10,20,23,12,3,4}; for (int i = 0; i < 5; i++){ printf("%d ",arr[i]); } return 0; }

  • @danknormie2276
    @danknormie2276 12 дней назад

    ye le bhai code or bhai thank you agar tune subscribe karra to nhi to firr bhi koi na tujhe nhi bulaunga 100 million dollar wale challange me...XD #include <stdio.h> int addnumbers(int x,int y,int z){ int sum = x+y+z; return 1; } void nalla(){ printf("hello mere dost"); } int main(){ int result,result2; int a = 10, b = 20,c= 30; nalla(); return 0; }

  • @somenkarmakar3463
    @somenkarmakar3463 13 дней назад

    damn🧏🧏

  • @DRM_codes
    @DRM_codes 15 дней назад

    bkl rhega tu

  • @danknormie2276
    @danknormie2276 15 дней назад

    ye le bhai code tera #include <stdio.h> int main(){ int a = 10; int b; int *ptr = &a; printf("%d ",*ptr);// ye basically jo tumhare ptr ke duara point kare gaye address parr jo value h usse access karne ke liye use hoti h printf("%p ",ptr);// ye tumhare ptr duara jo address parr point kiya jara h uss address ko access karne ke liye use hota h printf("%d ",a); printf("kya value print karani h babu"); scanf("%d",&b); printf("ye ri tumhari value:%d",b); return 0; }

  • @danknormie2276
    @danknormie2276 15 дней назад

    // Specifier Description Example // %d Integer(decimal) 123 // %i Integer (same as %d) 123 // %f Floating-point number 12.34 // %c Single character 'A' // %s String (null-terminated character array) "Hello" // %u Unsigned integer 123 // %ld Long integer 123456789 // %lf Double precision floating-point number 123.456789 // %x Hexadecimal integer (lowercase) 7b for 123 // %X Hexadecimal integer (uppercase) 7B for 123 // %o Octal integer 173 for 123 // %% Percent symbol (%) % #include <stdio.h> int main(){ char a = 99; printf("%c",a); return 0; }

  • @originalcontentcreator7
    @originalcontentcreator7 16 дней назад

    Why are you using vpn?

    • @danknormie2276
      @danknormie2276 16 дней назад

      nope, i was not using VPN that's something else I was also wondering earlier why that sign was coming even tho I was not using VPN...