473,464 Members | 1,588 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Is there a difference?

Hi,
I often see 2 different declairations of the main() function, and I am
unsure of the difference. They are
int main(int argc, char *argv[])
int main(int argc, char **argv[])

What is the difference?
And are they both complient with the ANSI standard?

--
Materialised
Nov 14 '05 #1
3 1221
Materialised <ma**********@privacy.net> scribbled the following:
Hi,
I often see 2 different declairations of the main() function, and I am
unsure of the difference. They are
int main(int argc, char *argv[])
int main(int argc, char **argv[]) What is the difference?
And are they both complient with the ANSI standard?


The difference between these is that they declare parameters of
different type.
In the first, the parameter argv is of type "pointer to pointer to
char", but in the second, it's of type "pointer to pointer to pointer
to char".
The first complies with the ANSI standard, the second does not.
You might as well be asking what is the difference between int *i and
int **i.

--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
"We sorcerers don't like to eat our words, so to say."
- Sparrowhawk
Nov 14 '05 #2
Materialised wrote:
Hi,
I often see 2 different declairations of the main() function, and I am
unsure of the difference. They are
int int main(int argc, char *argv[])
int main(int argc, char **argv[])

What is the difference?
And are they both complient with the ANSI standard?


R U sure you don't mean, what is the difference between

int main(int argc, char *argv[])
and
int main(int argc, char **argv)

??

The answer to that has been discussed many times in this group...
Nov 14 '05 #3
Hi!

"Materialised" <ma**********@privacy.net> wrote in message
news:c2*************@ID-220437.news.uni-berlin.de...
Hi,
I often see 2 different declairations of the main() function, and I am
unsure of the difference. They are
int main(int argc, char *argv[])
int main(int argc, char **argv[])
well, it's philosofical question...

first variant = argv[1][1] for example
second variant = *(*(argv+1)+1) and so on...

WBR, Life

What is the difference?
And are they both complient with the ANSI standard?

--
Materialised

Nov 14 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

34
by: yensao | last post by:
Hi, I have a hard time to understand difference and similarities between Relational database model and the Object-Oriented model. Can somebody help me with this? Thank you in advance. ...
21
by: b83503104 | last post by:
Hi, Can someone tell me the difference between single quote and double quote? Thanks
26
by: Frank | last post by:
For my website i would like to display the age of my son in years, months, days and hours. For now i manage to get a result for totals. Like the total number of days. This is the beginning: ...
21
by: Rich | last post by:
I was considering C# for developing a scientific application, but I have noticed a ~30% difference between VC++ .NET and C# on the same machine, under identical conditions: double a = 0,b = 0, c...
4
by: jamesyreid | last post by:
Hi, I'm really sorry to post this as I know it must have been asked countless times before, but I can't find an answer anywhere. Does anyone have a snippet of JavaScript code I could borrow...
3
by: bbawa1 | last post by:
Hi, I have a table which has a field ItemsReceived of type datetime. I have a grid view which has two columns. In first column i have to show the data from field ItemsReceived and in second...
12
by: Petronius | last post by:
Hallo, does anyone have an idea how to implement difference lists in Javascript? Thanks allot in advance
5
by: Julius | last post by:
Hej dudes, I need to calc the difference between two timestamps / dates ... For example what i need to calculate: Date 1: 2007.11.06 - 20:13:04 Date 2: 2007.11.07 - 21:13:04 Difference:...
9
by: viki1967 | last post by:
Hi all! This new forum its great! :) Congratulations !!! My answer: why this my code not working? Nothing error but not work the difference.... : <html>
11
by: cmb3587 | last post by:
I have two arrays and I'm trying to create a 3rd array that is the difference between the two arrays Ex: arrayA: 3 5 8 9 arrayB: 3 4 6 9 difference of A-B: 5 8 however, my...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.