Examveda
Examveda

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

A. kl

B. k l

C. xy

D. Compile time error

Answer: Option A


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function