What would be the output of the following C program?
(Is it a valid C program?)
#include <stdio.h> int main() { int i=43; printf("%d\n",printf("%d",printf("%d",i))); return 0; }
Answer
rintf function returns string count that it has sent to stdout for printing...ans would be::4321
ReplyDelete