c program to store and display student record using structure | learn coding

Поділитися
Вставка
  • Опубліковано 18 вер 2024

КОМЕНТАРІ • 66

  • @chinmayamj5615
    @chinmayamj5615 Рік тому +5

    Thank you so much for this precious clarity🙏

  • @rahulmajumder9093
    @rahulmajumder9093 9 місяців тому +19

    Today is my exam after 3 hours

  • @shovakhadka-9725
    @shovakhadka-9725 Рік тому +3

    Using structure to ask the info of any 12 student will rollno.,name,mark score in sub 1 ,sub2 ,sub3 . Also display them in proper formate along with calculation of total & percentage .( Full mark of each student is 100). Plz sir solve it exam will be coming near

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому +8

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @saishvartak9873
    @saishvartak9873 Рік тому +6

    write a c program to calculate sum of elements of given array using pointer

    • @pranavkrishna6375
      @pranavkrishna6375 Рік тому +5

      int main() {
      int n;
      printf("Enter the number of elements: ");
      scanf("%d", &n);
      int arr[n];
      printf("Enter %d elements:
      ", n);
      for (int i = 0; i < n; i++) {
      scanf("%d", &arr[i]);
      }
      int sum = 0;
      int *ptr = &arr[0];
      for (int i = 0; i < n; i++) {
      sum += *ptr;
      ptr++;
      }
      printf("Sum of elements: %d
      ", sum);
      return 0;
      }

  • @vaibhavgupta777
    @vaibhavgupta777 4 місяці тому +1

    Thank You Sir So So Much

  • @mehdinouira3540
    @mehdinouira3540 2 роки тому +1

    helpful my dear, thank you

  • @gafoornoufel8100
    @gafoornoufel8100 Рік тому +1

    Very good bro🙏🙏🙏

  • @bhaijanakash5044
    @bhaijanakash5044 Рік тому +1

    TQ

  • @nehakumarikushwaha1866
    @nehakumarikushwaha1866 3 роки тому +2

    Very useful video 👌

  • @mathematicsboy272
    @mathematicsboy272 3 роки тому +2

    Nice

  • @avih5366
    @avih5366 2 роки тому +1

    Useful video 🙂💖

  • @happycatshappylife539
    @happycatshappylife539 2 роки тому +1

    Thank you

  • @memevel
    @memevel 3 роки тому +2

    Sounds like Khan sir's class

  • @xavier7877
    @xavier7877 3 роки тому +1

    Sir make QandA Video!

  • @mahigaming3948
    @mahigaming3948 3 роки тому +1

    Sir mujhe c++ ka full course ka vdo chahiye ,plz sir upload kijiye ,mera exam aane waala h ,plz sir ,jaisa aapne c ka vdo bnaye the ,plz sir

  • @anamshaikh5860
    @anamshaikh5860 5 місяців тому

    Please tell how to display student record in descending order of percentage

  • @happy_girls
    @happy_girls 2 роки тому +1

    Sir,
    isvale program mai Avg ko for loop k bahar liksakte hai kya?????😀😅😅

    • @keshavkattel
      @keshavkattel Рік тому +1

      Infact you should write this avg outside loop. This program is correct but not optimized. The value of avg variable is changing in every iteration which makes no difference in our program but only decreasing its performance.

  • @DISAbhijitBehera
    @DISAbhijitBehera 3 роки тому +1

    Bhai me apke sath personally bat karna chata hu

  • @difinreel
    @difinreel Рік тому

    Which software are you using for programming c.

  • @Indiangamer-qr4so
    @Indiangamer-qr4so 3 місяці тому

    Magar 2 number struct karna ho toh kaise karein?

  • @vedantjadhav6155
    @vedantjadhav6155 2 роки тому

    Nice explanation

  • @Ashishkumar-bs4uw
    @Ashishkumar-bs4uw 7 місяців тому

    Array ka use kese karte hai ?
    Kyuki mujhe sabke liy variable declare karna pad rha hai.
    Please reply

    • @LearnCodingOfficial
      @LearnCodingOfficial  7 місяців тому

      Aap hmara array wala video dekhiye.... topic name with learn Coding search krke😊

    • @Ashishkumar-bs4uw
      @Ashishkumar-bs4uw 7 місяців тому

      @@LearnCodingOfficial coding app ka use kar rha hu usme nhi ho rha hai

  • @music_jag....
    @music_jag.... 3 роки тому

    i understand

  • @silvemishra8517
    @silvemishra8517 2 роки тому

    Does is their any difference between s.mark[i] and s[i].mark ??? - doubt

    • @unique_ruler_memes3003
      @unique_ruler_memes3003 2 роки тому

      yes ..if you write s.marks [i] there will be storing maks of i subjects..and if you write s[i].marks it is the method to assigning marks to i number of students..

  • @excellentherculesthunder3364
    @excellentherculesthunder3364 4 місяці тому +1

    Mine is after 1hour

  • @oneday7789
    @oneday7789 Рік тому

    Bro you will use & in scanf for getting string value 😁

  • @ashwin1107
    @ashwin1107 Рік тому

    Is this student rank program

  • @siddharthandres9435
    @siddharthandres9435 Рік тому +1

    Please start speaking in English

  • @Fitbrahman7
    @Fitbrahman7 2 роки тому

    Sir mera 5 subject put nhi ho rha h random value already stored h kya kre bar bar yahi aa rha h

  • @prafullstatus8994
    @prafullstatus8994 2 роки тому +1

    WHY am I using '"struct Stu" why can I not use "int main()"

    • @sivabalan7614
      @sivabalan7614 2 роки тому

      To define a structure, use the struct statement. It defines a new data type, with more than one member, for your program.

  • @rakshithar9041
    @rakshithar9041 Рік тому

    Structure using array 5 names how to do it....?

    • @LearnCodingOfficial
      @LearnCodingOfficial  Рік тому

      Structure using arrays 👇
      ua-cam.com/video/LlD30_D-jc4/v-deo.html

  • @becaboardofeducationcontro9104
    @becaboardofeducationcontro9104 3 роки тому +2

    Sir plz linux or unix command pa video bna da plz

  • @SonuKumar-zv7er
    @SonuKumar-zv7er 3 роки тому

    Yah kaun sa software hai..
    Please make a video for download and install this software

    • @LearnCodingOfficial
      @LearnCodingOfficial  3 роки тому +1

      Dev c++ Download 👇👇👇
      ua-cam.com/video/jbSEFYl7flc/v-deo.html

  • @Abhi102_
    @Abhi102_ 2 роки тому

    Sir total aur avrage sahi nhi aa rha mere me

  • @ganicreations8762
    @ganicreations8762 3 роки тому +2

    Bro explain in telugu

  • @ishwardayalgarg8097
    @ishwardayalgarg8097 Рік тому

    Wrong

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому +1

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

    • @computer5548
      @computer5548 3 роки тому

      ua-cam.com/video/QfuzVtQjvtg/v-deo.html

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro

  • @harshtiwari5962
    @harshtiwari5962 3 роки тому

    Brother please
    C language me
    Sorting ke program bana kr samjhao
    Bubble sort
    Selction sort
    Insertion sort
    Merge sort
    Aapne bs algorithm tk btya pr samjh ni aaya
    Program bnao bro