Skip to content
Home » Strings – Part 2 | C Language Tutorial naresh i technology c language

Strings – Part 2 | C Language Tutorial naresh i technology c language



Strings – ตอนที่ 2 | วิดีโอสอนภาษา C วิดีโอสอนภาษา C | คุณ ศรีนิวาศ ** ลงทะเบียนอบรมออนไลน์ : ? โทร: +91-8179191999 ? เยี่ยมชมเว็บไซต์ของเราสำหรับการฝึกอบรมในชั้นเรียน: ? สำหรับการฝึกอบรมออนไลน์: ————————– ? เกี่ยวกับ NareshIT: “Naresh IT มีประสบการณ์มากกว่า 14 ปีในอุตสาหกรรมการฝึกอบรมซอฟต์แวร์และสถาบันฝึกอบรมซอฟต์แวร์ที่ดีที่สุดสำหรับการฝึกอบรมออนไลน์ การฝึกอบรมในชั้นเรียน การฝึกอบรมช่วงสุดสัปดาห์ การฝึกอบรมองค์กรของ Hadoop, Salesforce, AWS, DevOps, Spark, Data Science, Python , Tableau, RPA ,Java, C#.NET, ASP.NET, Oracle, เครื่องมือทดสอบ, แสงสีเงิน, Linq, SQL Server, Selenium, Android, iPhone, ภาษา C, C++, PHP และ Digital Marketing ในสหรัฐอเมริกา, Hyderabad, Chennai และ วิชัยวาทะ บังกาลอร์ ประเทศอินเดีย ซึ่งให้การฝึกอบรมออนไลน์ในทุกสถานที่ ————————– คุณสมบัติการฝึกอบรมออนไลน์ของเรา: 1.การฝึกอบรมแบบเรียลไทม์ ผู้เชี่ยวชาญ 2.สถานการณ์เฉพาะอุตสาหกรรม 3.การกำหนดเวลาที่ยืดหยุ่น 4.สำเนาเนื้อหาที่อ่อนนุ่ม 5. แชร์วิดีโอของแต่ละเซสชัน — โปรดเขียนกลับมาที่ [email protected]/[email protected] หรือโทร สหรัฐอเมริกา: +1404-232-9879 หรืออินเดีย: +918179191999 ** ตรวจสอบลิงก์ด้านล่าง** ? Reg: ? สมัครสมาชิกช่องของเรา: ? แวดวงเราบน G+: ? ชอบเราบน Facebook: ? ติดตามเราบน Twitter: ? ติดตามเราได้ที่ Linkedin: ? ติดตามเราบน Instagram: .

Images related to the topic naresh i technology c language

Strings - Part 2 | C Language Tutorial

Strings – Part 2 | C Language Tutorial

Search related to the topic Strings – Part 2 | C Language Tutorial

#Strings #Part #Language #Tutorial
Strings – Part 2 | C Language Tutorial
naresh i technology c language
ดูวิธีการทำเงินออนไลน์ล่าสุดทั้งหมด: ดูเพิ่มเติมที่นี่
ดูวิธีการทำเงินออนไลน์ล่าสุดทั้งหมด: ดูเพิ่มเติมที่นี่

See also  Amazing Technology and videos ||#shorts technology and you

30 thoughts on “Strings – Part 2 | C Language Tutorial naresh i technology c language”

  1. #include <stdio.h>
    #include <string.h>
    int len (char[]);
    int main()
    {
    char ch[100];
    int length;
    scanf("%[^n]%*c",ch);
    printf("%s",ch);
    length=len(ch);
    printf("%d",length);
    return 0;
    }
    int len(char string[])
    {
    int count=0,i=0;
    while(string[i]!='')
    {
    count++;
    i++;
    }
    return count;
    }

  2. Sir ur saying wrong strlen() function counts including null character it counts from 0 to 9 not 1 to 9 .bcz of this when I am watching the 3 part of string to reverse the string I am not getting output I have check code and entered everything like u said but the one thing u said wrong about this strlen() by using this it swaps the null charater also so we have to use strlen()-1 then null will not Swaped.

  3. #include <string.h>

    main()

    {

    char Str[1000];

    unsigned int len;

    printf("Enter the String: ");

    gets (Str);

    len= strlen (Str);

    printf("Length of '%s' is '%d'", Str, len);

    }
    RUN THIS
    THANKS ME LATER

  4. Sir, just for fun i have written this:-

    #include<stdio.h>

    int main()
    {
    char name[50] = "meher ali";
    unsigned int len;

    for(len=0; name[len]!=' '; len++);

    printf("%d", len);
    }

    Output: 5

    Because i wrote 'space' in for loop… It's is for fun only. 😛😛😛

    You are great teacher and i learnt from you many things thank you

Leave a Reply

Your email address will not be published. Required fields are marked *