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...
http://www.experts-exchange.com/Programming/System/Macintosh/Q_20503827.html
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)
...
http://www.experts-exchange.com/Programming/Languages/C/Q_20644337.html
Zones:
CDate Answered: 06/11/2003 Grade: A Views: 72
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.
http://www.experts-exchange.com/Programming/Programming_Languages/Cplusplus_Builder/Q_2103...
Zones:
C++ BuilderDate Answered: 06/26/2004 Grade: A Views: 453
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);
...
http://www.experts-exchange.com/Programming/Languages/C/Q_22892574.html
Zones:
CDate Answered: 10/15/2007 Grade: A Views: 9
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...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_10090314.htm...
Zones:
Windows MFCDate Answered: 10/19/1998 Grade: A Views: 40
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[]);
----...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_11722939.htm...
Zones:
Windows MFCDate Answered: 04/29/2001 Grade: A 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 ...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20147298.html
Zones:
C++Date Answered: 07/10/2001 Grade: A Views: 93
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
------------...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_20742479.htm...
Zones:
Windows MFCDate Answered: 09/18/2003 Grade: B 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...
http://www.experts-exchange.com/Programming/Languages/C/Q_20870845.html
Zones:
CDate Answered: 03/03/2004 Grade: A Views: 0
Are argc, argv local to main
http://www.experts-exchange.com/Programming/Languages/C/Q_21265205.html
Zones:
CDate Answered: 01/11/2005 Grade: A Views: 190