Enter Keywords:
1 - 10 of 18(0 seconds)
Sort By:
 
Im learning C++ from the book C++ progarmming languages (bjarne stroustrup). I ran one of his little app and something went.. well not wrong but different then what expected.. is argc working...
Zones: Gene...Date Answered: 05/21/2003 Rating: 6.0 Views: 284
I am trying to access argv[], argc in a function i am using but it wont compile, it keeps giving me error, 'argv, argc undeclared' int processRows(int i) {  int rowNumber;  while (i < argc) ...
Zones: CDate Answered: 06/11/2003 Rating: 9.4 Views: 4
hi guys, i see this alot, but i've never used it in a program, and i dont know whats it used for, so if someone can help me i'll be thankful.
Zones: C++ BuilderDate Answered: 06/26/2004 Rating: 9.0 Views: 363
What is "argc" and why is the value is 3 when i type in this: a.out abc de? #include <stdio.h> int main (int argc, char *argv[]) {   int i,n;   char *p;   printf("argc is: %d\n", argc); ...
Zones: CDate Answered: 10/15/2007 Rating: 9.0 Views: 0
I would like to be able to get command line options in argc & argv format in my InitInstance() call without having to parse through the m_lpCmdLine string myself. Is there an easy way to do this? T...
Zones: Windows MFCDate Answered: 10/19/1998 Rating: 9.0 Views: 11
Hi, Can I ask you a question without enough pointes? I added try.h and try.c to me MFC project. ---------------------------------------- try.h: int main0(int argc, char *argv[]); ----...
Zones: Windows MFCDate Answered: 04/29/2001 Rating: 7.8 Views: 0
I got a program from someone else and the main()-function looks like follow: ... ... #include "MyService.h" #ifndef _CONSOLE      #include <stdlib.h>          // for declaration of __argv ...
Zones: C++Date Answered: 07/10/2001 Rating: 8.4 Views: 50
Hi linking problem I have application that use MFC and if i compile it in debug mode everything is ok. But when i want to builde it release mode i get the following errors ------------...
Zones: Windows MFCDate Answered: 09/18/2003 Rating: 9.2 Views: 0
I am using Microsoft Visual C version 6. I recieved this program from someone, and it was written as a  Console Application. I am trying to rewrite it as a Dialog Application. I am having trouble t...
Zones: CDate Answered: 03/03/2004 Rating: 7.6 Views: 0
Are argc, argv local to main
Zones: CDate Answered: 01/11/2005 Rating: 7.4 Views: 25