March 10th, 2009 06:41 PM
i want to return to the lines above ,where i call the function,i cant design my program.
i want to return to a menu which is in the main and if the user wants to run the function again then he can...
March 10th, 2009 05:30 PM
i have so many functions in my program,what i want to do is, i want to return back to the main() but in somewhere middle of it!.
should i use goto statements?
i tried 'em,it gave some error!
...
March 10th, 2009 11:54 AM
char s[]={"this is a simple string"};
char t[]={"is"};
is used to to initialize the array by the string given,the comipler counts the number automatically
March 10th, 2009 09:43 AM
i debugged my code and it gives the following error just as it calls my function
"Unhandled exception at 0x1026f8e0 in Assignment 3_Question 2.exe: 0xC0000005: Access violation reading location...
March 10th, 2009 09:15 AM
i have made this strstr() function,it gives the correct answer if it finds the correct string inside the another but the program crashes if it does not find the string,gives a runtime error,compliler...