+ 1
How printf(6+"hello world"); will work??
2 Antworten
+ 4
Patel Jay : for c, string is not present and it can be considered as char pointer... so, hello world is char* argument to printf... one can do arithmetic operations + on pointer which moved pointer from zero index to sixth index... hence world would be output here.
+ 1
Oov ok thanks 😇😇