C
Programming and Technical
Q. What are differences between sizeof operator and strlen function?
A. sizeof is keyword of c which can find size of a string constant including null character but strlen is function which has been defined string.h and can find number of characters in a string excluding null character
Read Solution (Total 0)
C Other Question