(2025)Fastest Programming Language C, C++, Python, Java, Kotlin, C#, Rust, JavaScript, Go Speed Test

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ม.ค. 2025

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

  • @SoumyaMishra-x7p
    @SoumyaMishra-x7p 7 วันที่ผ่านมา +2

    I think java is a one of the fastest language

  • @a_dev6696
    @a_dev6696 6 วันที่ผ่านมา +1

    c rust and java are top 3

    • @TheAvinashCode
      @TheAvinashCode  5 วันที่ผ่านมา

      Yes but, technically c and c++ is faster
      If you compile the code using -02 or -03 flag
      For C code:
      ```
      gcc -O2 your_file.c -o output_file
      gcc -O3 your_file.c -o output_file
      ```
      For C++ code:
      ```
      g++ -O2 your_file.cpp -o output_file
      g++ -O3 your_file.cpp -o output_file
      ```

  • @BashPSK
    @BashPSK วันที่ผ่านมา +1

    I tested Kotlin vs Java with while loop. When i print something on each time, Kotlin is fast but java has too slow 😅😅.

    • @TheAvinashCode
      @TheAvinashCode  วันที่ผ่านมา

      😂

    • @TheAvinashCode
      @TheAvinashCode  วันที่ผ่านมา

      Bro I think it’s all depend on the configuration and specification of the system

    • @BashPSK
      @BashPSK วันที่ผ่านมา

      @TheAvinashCode No bro. It's depends on piece of Codes and languages.

  • @TheVideo001
    @TheVideo001 7 วันที่ผ่านมา +1

    I think c and c++ should be fast

    • @TheAvinashCode
      @TheAvinashCode  7 วันที่ผ่านมา

      Yes they are if you compile them using -02 or -03 flag

    • @TheAvinashCode
      @TheAvinashCode  7 วันที่ผ่านมา

      For C code:
      gcc -O2 your_file.c -o output_file
      gcc -O3 your_file.c -o output_file
      For C++ code:
      g++ -O2 your_file.cpp -o output_file
      g++ -O3 your_file.cpp -o output_file