Hi guys, I'm just wondering about function printf in C programming.lets assume I want to read "Hello world" , so I did in my compiler printf("Hello world") , what's confusing me, the PC will go to the address where the "Hello world" found, and he will print it, So confusing me, how's printing it, one by one? or just print it as complete value? I mean does he use sequential printing char by char on my screen? or doing in parallel read/printf for every char in "Hello world" so it's shown up on my screen as complete intact value?! I guess the PC print char by char and it takes time to print char from char no?thanks alot!!!