92.
What will be the output of the following C code?
#include <stdio.h>
#define MIN 0
#ifdef(MIN)
#define MAX 10
#endif
int main()
{
    printf("%d %d\n", MAX, MIN);
    return 0;
}

93.
What will be the output of the following C code?
#include <stdio.h>
int main()
{
    register int i = 10;
    int *p = &i;
    *p = 11;
    printf("%d %d\n", i, *p);
}

97.
#pragma exit is primarily used for?

Read More Section(Function)

Each Section contains maximum 100 MCQs question on Function. To get more questions visit other sections.