bro really have been watching your videos and you really helped me a lot just thankssss
@bopon40904 жыл бұрын
This was helpful. Thanks gor sharing.
@josuer46753 жыл бұрын
Hey! Great vid, thank you!!!
@dimalurie3 жыл бұрын
Thank you for the great video! you've mentioned that when defining the strings in main() the memory is allocated sequentially on the stack, so that text3 is allocated first and we can iterate through the memory from text3 -> text1 using a char *p. but for some reason, this does not happen on my machine, and text2 appears to be allocated first. is this just a quirk of the compiler optimization?
@CodeVault3 жыл бұрын
Can you send me the code? Depending on how you defined your variables they could be allocated in different places
@KD_and_KIDS3 жыл бұрын
can you compile the whole playlist of c programing i a single folder please .. your content is very good btw.
@CodeVault3 жыл бұрын
There's a courses tab on our website in which I moved most lessons, they are grouped by category but in no specific order: code-vault.net/
@KD_and_KIDS3 жыл бұрын
@@CodeVault okay sir I will check it out
@chenwu97882 жыл бұрын
how to copy text3 into text1 starting from the 10th location of text1?
@CodeVault2 жыл бұрын
You just do: strcpy(text3 + 10, text1);
@PhucNguyen-lb5rv Жыл бұрын
you are going to write back,strcpy(text1 + 9, text3)@@CodeVault