I am looking to add multiple parts to a parameter.
Like this, I know know in VB.net i can do
messagebox("hello" + textbox1.text) // yields hello and whatever is in textbox1
but how would I do this in C?
I tried &
and +
but it give me errors.
i want to create 5 files, and use a for loop to create them, counting 1-5
ofp = fopen("data" + (loop counter) + ".txt", "r"); // allong those lines...
so the file name would be data1.txt;data2.txt;data3.txt so forth.
thanks