Output of C programs | Set 63
1) What is the output of the following program? #include <stdio.h> #include <string.h> int main(void) { char* p = "geeks"; printf("%lu %lu %lu ", sizeof(p), sizeof(*p), sizeof("geeks")); printf("%lu %lu", strlen(p), strlen("geeks")); retu