Home » C Programming » C Preprocessor

Will the following program print the message infinite number of times? #include<stdio.h> #define INFINITELOOP while(1) int main() { INFINITELOOP printf("CuriousTab"); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!