1.

Compare strcmp() and strcmpi().

Answer»

strcmp(“PUC”, “PUC”) output: negative integer. – This is case sensitive and compare two strings.

Strcmpi(“PUC”, “PUC”) output: 0 (zero). – This is not case sensitive and strings



Discussion

No Comment Found