The simple answer to your question is Yes. What you need to do is creatre a Class eg called info and then call the object of that class msg. then you can pass info to that object and the object with all the info you require can be stored in an array/queue/stack. As i am only new to coding myself this is how I would tackle it as I am in the middle of a similar project at the moment. I have started on pointers and my friends have told me this is a much better method of storing info. I suggest you do a quick search of the tutuorial section of this site or do a google on it as that is where i have learnt about the structs, classes and objects. try www.cplus.com
Regards
Tim
Any1 plz help me.im new to this site and a begineer of C.... this may be stupid ques to ask.. char msg1[20]="hello"; char msg2[20]="welcome"; char msg3[20]="goodnite";
can i store these three arrays in one sigle array....not in pointers. ie in.....
char result[50];
i need the result like this..
output: hello welcome goodnite