Stack Overflow has this question answered in many other languages, but not C. So I thought I\'d ask, since I have the same issue.
How does one concatenate t
You can also use Macro to concatnate Strings ( Easy way )
#include #define change(a,b) a##b int main() { int y; y=change(12,34); printf("%d",y); return 0; }
It has one Disadvantage. We can't pass arguments in this method