C Programming :: Library Functions
-
Point out the error in the following program.
#include
int main() { fprintf("FresherGATE"); printf("%.ef", 2.0); return 0; } -
Point out the error in the following program.
#include
int main() { char str1[] = "Learn through FresherGATE0.com", str2[120]; char *p; p = (char*) memccpy(str2, str1, 'i', strlen(str1)); *p = '\0'; printf("%s", str2); return 0; } -
Point out the error in the following program.
#include