Top

Discussion

Will the following program print the message infinite number of times?

#include
#define INFINITELOOP while(1)

int main()
{
    INFINITELOOP
    printf("IndiaBIX");
    return 0;
}

 

  • A.Yes
  • B.No

Answer: A

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment