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
#include using namespace std; int main() { int a=0,b=0,count=0,c=0,t=0; cout<<"enter 2 no"<>a>>b; t=b; while(b!=0) { b=b/10; count++; } while(count!=0) { a=a*10; count--; c=a+t; } cout<<"concate no is:"<