Examveda

What will be the output of the following C code?
#include <stdio.h>
#define foo(m, n) m ## n
int main()
{
    printf("%s\n", foo(k, l));
}

A. k l

B. kl

C. Compile time error

D. Undefined behaviour

Answer: Option C


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function