Forum: C May 5th, 2007 |
| Replies: 24 Views: 9,440 Given that the code posted by me/Vijayan works both on windows and unix #ifdefs won't be needed in this particular case. |
Forum: C Apr 26th, 2007 |
| Replies: 6 Views: 1,228 Tell me abt it.. :)
Guess everyone faces this some time or the other while they learn programming..
That's teh reason I used words "lucky/unlucky".. may be after a few years your hand will get... |
Forum: C Apr 17th, 2007 |
| Replies: 4 Views: 1,513 You can't take a 2D array as a function argument with both diamentions of variable length (it's allowed for single diamention but not for more than one !)
i.e.
void my_function1( int arr_1D[] )... |
Forum: C Mar 29th, 2007 |
| Replies: 11 Views: 3,874 A word on unresolved symbol:
This is the oppisite of "multiple definitions". In this case you have put extern declaration in some file, (so compiler is happy and leaves the work of finding it's... |
Forum: C Mar 28th, 2007 |
| Replies: 7 Views: 1,742 What abt GOTO LABEL?
if ( true )
{
cout << "Hi" << endl ;
goto ELSE_PART ;
}
else
{
ELSE_PART: |