Concatenate two strings without strcat() string function ||C language tutorial for beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ต.ค. 2024

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

  • @User-ik1vq
    @User-ik1vq ปีที่แล้ว

    Great video, sharp and to the point explanation. I am BCA student btw 🙂

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

      Thank you😇
      Check out other videos on my channel.

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

    I have two questions for you
    1. You didn't declared the function in the first method, but still it worked.
    2. When you passed the char arrays from the main function through strcat01, you have those received in the same char arrays in the strcat01 function?
    Can you explain this to me??

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

      1. Because when you create a function before the main function, you don't need to declare it.
      2. Only the names of the variables are the same but the char arrays are different in the main() function and strcat1() function.