Since 5/31/2012 9:23:57 PM, markar409 has written 4 articles and participated in 2 conversations. markar409 signature: markar409
markar409's articles:
Items(4) /1
System requirement to test a parallel FORTRAN code in Windows135 (7/21/2009 5:19:15 PM) comp.parallel Hi, I have to test a parallel FORTRAN code in windows environment. So I want to know the minimum system requirement (hardware and software both) to test the code. Any help will be appreciated. :) Thanks in a... madhu
3D vector memory deallocation617 (11/11/2006 8:34:15 AM) comp.lang.c++ vector > > Vector3D; // 3dvector. for (long k = 0; j >() ); for (long j = 0; j () ); for ( long i = 0; i < Width; i++ ) { Vector3D[k][j].push_back ( i ); } } } Vector3D.clear(); //memory deal... madhu
STL Vector - clear() works for 2D Vectors?520 (11/10/2006 10:57:58 AM) comp.lang.c++ http://msdn2.microsoft.com/en-us/library/fs5a18ce(VS.80).aspx vector v1; v1.push_back( 10 ); //adds 10 to the tail v1.push_back( 20 ); //adds 20 to the tail cout << "The size of v1 is " << v1.size( ) << endl;... madhu
Problem in adding new images ait folder from a selected folder016 (10/5/2006 7:24:31 AM) comp.lang.c++ Hi all I have a problem in this code which deletes all the prvious folders. If you have any idea please give it. Thanks in advance. Madhukar Arvind Kumar void CHtmlGeneratorDlg::OnAdd() { // TODO: Add your ... madhu
markar409's replies:
Items(1) /1
3D vector memory deallocation617 (11/11/2006 8:34:15 AM) comp.lang.c++ vector > > Vector3D; // 3dvector. for (long k = 0; j >() ); for (long j = 0; j () ); for ( long i = 0; i < Width; i++ ) { Vector3D[k][j].push_back ( i ); } } } Vector3D.clear(); //memory deal... markar409(6)