12 || Logical Operators in C-Language Telugu | C-Language Telugu Tutorials || Computersadda.com

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ธ.ค. 2024
  • హాయ్ .. వ్యూయర్స్ ..
    ఈ TH-cam Channelలో Videos వలన మీకు Use వుంటే, Valuable Content అయితే, మీకు Time & Money Save అయితేనే ఈ Channel లో Members Ship తీసుకోండి. Additional Benefits పొందండి . ఈ Channel ని Support చేయండి. Members Ship కావాలి అంటే Subscribe Button పక్కనే వున్న JOIN Button ని Click చేయండి. Information చూసుకోండి.
    Click here Below Link & JOIN:-
    ========================
    / @computersadda
    ===========================================================
    Each Cource Topic wise Play list Links :-
    ================================
    Ms-Word 👉 • MS-Word 2016 Telugu Tu...
    Ms-Excel 👉 • Ms-Excel Starting Tuto...
    Ms-PPT 👉 • Ms-Power Point 2016
    Photoshop CC 👉 • Photoshop CC Telugu Tu...
    PageMaker 👉 • Pagemaker
    CorelDraw 👉 • CorelDRAW Telugu Tutor...
    Indesign 👉 • Adobe InDesign Telugu ...
    AutoCAD 👉 • AutoCAD 2D Telugu Tuto...
    Html 👉 • HTML Telugu Tutorials
    ============================================
    Facebook fan page
    -------------------------------
    / computersadda-19588509...
    TH-cam Channel page
    ------------------------------------
    / @computersadda
    ------------------------------------------------------------------------------------------------------------
    Hi Friends. Welcome to our Adda.
    Complete Telugu Video Tutorials.
    Ms-office,Tally ERP 9, Accounts,Photoshop, Pagemaker, CorelDRAW, AutoCAD (2D & 3D), C Lang, Basics of Computers, Html, Tips & Tricks, Weekly QUIZ.
    All Courses Shortcuts keys, Theories,
    Abbreviations,What & Who is This ?

ความคิดเห็น • 30

  • @Computersadda
    @Computersadda  ปีที่แล้ว +1

    C Language previous classes link:
    th-cam.com/play/PLL3zPWMHgpV0W4yv5yv_ibtMQon3ddnEr.html

  • @callmehari1458
    @callmehari1458 ปีที่แล้ว +4

    Hi sir thanks for doing c language videos sir daily one video petandii sir c language dhi and alage notes provide cheyandi sir

  • @rpavankalyan5144
    @rpavankalyan5144 ปีที่แล้ว

    13th video tomorrow applowd cheyandi sir please.. views kosam wait cheyakandi fast gaa applowd cheyandi sir views automatic ga vastundhi 😊

  • @k.prabha18
    @k.prabha18 ปีที่แล้ว

    TALLY PRIME NEW VERSION CHEPPANDI SIR PLZZZ 🙏🏻🙏🏻🙏🏻🙏🏻

  • @tejakumartejakumar4624
    @tejakumartejakumar4624 ปีที่แล้ว +2

    MS word 2016 software download cheppadi bro😊

  • @prashanthiprashanthi1888
    @prashanthiprashanthi1888 ปีที่แล้ว

    Bro please spoken English classes kuda cheppandi

  • @altcreations8869
    @altcreations8869 ปีที่แล้ว +1

    Brother naaku excel lo monthly Balence sheet template ready chesi isthara please

  • @vinodkumarsolapur1
    @vinodkumarsolapur1 ปีที่แล้ว

    Bro I want to consolidated bulk upload in way bill portal from excel sheet

  • @cforeveryone9754
    @cforeveryone9754 หลายเดือนก่อน

    Sir >=35 anduku tesukovali, >34 tesukovachu kada sir

  • @k.prabha18
    @k.prabha18 ปีที่แล้ว

    TALLY PRIME NEW VERSION CHEPPANDI SIR PLZZZ

  • @ArunKumar-rn4up
    @ArunKumar-rn4up ปีที่แล้ว +1

    Mundu c language videos thondarga pettandi. Motham year ch kadi

  • @divakarraja4576
    @divakarraja4576 ปีที่แล้ว

    sir how to solve the product activation code problem in ms word .

  • @damoderc6500
    @damoderc6500 ปีที่แล้ว

    Clasees on ubuntu word short cuts

  • @sre658
    @sre658 ปีที่แล้ว

    Sir ! Waiting for next class?

  • @sre658
    @sre658 ปีที่แล้ว

    Sir! Suppose two subjects lo true condition vachhi, 3Rd subject lo false condition vasthe result yemi vasthundandi?

    • @Computersadda
      @Computersadda  ปีที่แล้ว

      Video complete ga chudandi

    • @sre658
      @sre658 ปีที่แล้ว

      ​@@Computersadda suppose tel=72pass,eng=65pass, maths=28 fail . Total result condition true or false ?

    • @dnishanth445
      @dnishanth445 6 หลายเดือนก่อน

      Fail

  • @reddysduttalur
    @reddysduttalur ปีที่แล้ว

    🎉🎉🎉🎉🎉🎉🎉

  • @vinaysmart4665
    @vinaysmart4665 ปีที่แล้ว

    Hello Brotheruuuu, I need one OT Sheet, Hours with Amount Calculation, If One employee works 2 hrs OT, One hour OT Amount 10/-, Automatic calculation all employees with Different Different Hours then have to show their amounts, I need this Brotheruuu, 😢

    • @jashwanthjadhu3693
      @jashwanthjadhu3693 9 หลายเดือนก่อน

      #include
      #define OT_RATE 10
      // Function to calculate OT amount
      int calculateOTAmount(int hours) {
      return hours * OT_RATE;
      }
      int main() {
      int numEmployees;
      // Input: Number of employees
      printf("Enter the number of employees: ");
      scanf("%d", &numEmployees);
      // Arrays to store OT hours and amounts for each employee
      int otHours[numEmployees];
      int otAmounts[numEmployees];
      // Input: OT hours for each employee
      for (int i = 0; i < numEmployees; ++i) {
      printf("Enter OT hours for Employee %d: ", i + 1);
      scanf("%d", &otHours[i]);
      // Calculate OT amount using the function
      otAmounts[i] = calculateOTAmount(otHours[i]);
      }
      // Output: Display OT amounts for each employee
      printf("
      Employee OT Details:
      ");
      for (int i = 0; i < numEmployees; ++i) {
      printf("Employee %d - OT Hours: %d, OT Amount: %d
      ", i + 1, otHours[i], otAmounts[i]);
      }
      return 0;
      }

  • @vinodkumarsolapur1
    @vinodkumarsolapur1 ปีที่แล้ว

    Pl help me bro

  • @k.prabha18
    @k.prabha18 ปีที่แล้ว

    TALLY PRIME NEW VERSION CHEPPANDI SIR PLZZZ 🙏🏻🙏🏻🙏🏻🙏🏻

  • @k.prabha18
    @k.prabha18 ปีที่แล้ว

    TALLY PRIME NEW VERSION CHEPPANDI SIR PLZZZ 🙏🏻🙏🏻🙏🏻🙏🏻

  • @k.prabha18
    @k.prabha18 ปีที่แล้ว

    TALLY PRIME NEW VERSION CHEPPANDI SIR PLZZZ 🙏🏻🙏🏻🙏🏻🙏🏻

  • @k.prabha18
    @k.prabha18 ปีที่แล้ว

    TALLY PRIME NEW VERSION CHEPPANDI SIR PLZZZ 🙏🏻🙏🏻🙏🏻🙏🏻

  • @k.prabha18
    @k.prabha18 ปีที่แล้ว

    TALLY PRIME NEW VERSION CHEPPANDI SIR PLZZZ 🙏🏻🙏🏻🙏🏻🙏🏻

  • @k.prabha18
    @k.prabha18 ปีที่แล้ว

    TALLY PRIME NEW VERSION CHEPPANDI SIR PLZZZ 🙏🏻🙏🏻🙏🏻🙏🏻

  • @k.prabha18
    @k.prabha18 ปีที่แล้ว

    TALLY PRIME NEW VERSION CHEPPANDI SIR PLZZZ 🙏🏻🙏🏻🙏🏻🙏🏻

  • @k.prabha18
    @k.prabha18 ปีที่แล้ว

    TALLY PRIME NEW VERSION CHEPPANDI SIR PLZZZ 🙏🏻🙏🏻🙏🏻🙏🏻