difference between C(gcc 4.3.2) , C 99 strict(gcc 4.3.2) , C++(gcc-4.0.0-8) ,C++(gcc-4.3.2)
Posted
by
user1139048
on Stack Overflow
See other posts from Stack Overflow
or by user1139048
Published on 2012-07-05T08:57:00Z
Indexed on
2012/07/05
9:15 UTC
Read the original article
Hit count: 162
I have the following questions concerning the differences between the four options:
- What is the main difference between the four options?
- Which of the above support int64_t or long long without suffix LL. I want a data type of the range 2^63 - 1
- If your answer to my second question is not C(gcc 4.3.2) , whether the code I write in C(gcc 4.3.2) for C language will be valid in rest of the three options or do I have to modify something, then what will be those modifications.
© Stack Overflow or respective owner