What's the expected output for the following program and why?
enum {false,true}; int main() { int i=1; do { printf("%d\n",i); i++; if(i < 15) continue; }while(false); return 0; }
#include is missing. if added we will get 1 .
ReplyDelete