int main() { printf("%u %"> int main() { printf("%u %">
#include<stdio.h> int main() { printf("%u %s\n", &"Hello1", &"Hello2"); return 0; }
The %u format specifier tells the compiler to print the memory address of the "Hello1".
The %s format specifier tells the compiler to print the string "Hello2".
Hence the output of the program is "1022 Hello2".
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.