#include <iostream>
using namespace std;
int main() {
printf("hello");
getchar();
return 0;
}
Here, I used <iostream>. The printf function is working; cout is working, too.
So, is it a C or C++ program?
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
It's a C++ program. C doesn't have namespaces. |
|||||||||||
|
|
Neither, it's an error. On my conforming C++ compiler it's an error because you don't In C it's an error because of |
|||||||||||||||||||||
|
|
It's a C++ program, you can't compile it without a C++ compiler (or without tricking a C compiler into compiling it, see @Dan's comment below).
EDIT: ok tried to compile it Mac, Snow Leopard, i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3)
Undefined symbols:
"std::ios_base::Init::Init()", referenced from:
__static_initialization_and_destruction_0(int, int)in cc85GAQs.o
"std::basic_string, std::allocator >::size() const", referenced from:
std::__verify_grouping(char const*, unsigned long, std::basic_string, std::allocator > const&)in cc85GAQs.o
"std::basic_string, std::allocator >::operator[](unsigned long) const", referenced from:
std::__verify_grouping(char const*, unsigned long, std::basic_string, std::allocator > const&)in cc85GAQs.o
std::__verify_grouping(char const*, unsigned long, std::basic_string, std::allocator > const&)in cc85GAQs.o
std::__verify_grouping(char const*, unsigned long, std::basic_string, std::allocator > const&)in cc85GAQs.o
"___gxx_personality_v0", referenced from:
std::__verify_grouping(char const*, unsigned long, std::basic_string, std::allocator > const&)in cc85GAQs.o
___tcf_0 in cc85GAQs.o
_main in cc85GAQs.o
unsigned long const& std::min(unsigned long const&, unsigned long const&)in cc85GAQs.o
__static_initialization_and_destruction_0(int, int)in cc85GAQs.o
global constructors keyed to mainin cc85GAQs.o
CIE in cc85GAQs.o
"std::ios_base::Init::~Init()", referenced from:
___tcf_0 in cc85GAQs.o
ld: symbol(s) not found
main.c:1:20: error: iostream: No such file or directory main.c:3: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘namespace’ main.c: In function ‘main’: main.c:5: warning: incompatible implicit declaration of built-in function ‘printf’
Linux, LMDE, gcc (Debian 4.6.1-4) 4.6.1
main.cpp:5:15: error: ‘printf’ was not declared in this scope main.cpp:6:9: error: ‘getchar’ was not declared in this scope
main.cpp:5:15: error: ‘printf’ was not declared in this scope main.cpp:6:9: error: ‘getchar’ was not declared in this scope Windows 7, MSVC 2005
So, I see it as a bad C++ program; and compiling it successfully depends on the compiler implementation. |
|||||||||||||||||||||
|
|
It's impossible to tell. It depends entirely on the content of |
|||||||||||||||||||||
|
|
Assuming a normal (standard) environment, it's C++.
However, in a custom (insane) environment, the following could be possible:
So in theory, it could be valid C. |
||||
|
|
You can still use printf. This is because almost all C++ compilers have been developed to support C as well (that is the reason of C++ not being a complete Object Oriented language). And, there are various compilers around that automatically supplies "stdio.h" to the program. that might be reason of printf working without "stdio" being explicitily included. So, on the whole you've a C++ code, not a C code.. |
||||
|
|
|
It's a C++ program and as far as I know you can compile it without any error in MinGW or Dev C |
|||
|
The MS Visual Studio first checks the extension of source file (.c or .cpp) to decide which compiler to be used. i.e , simple.c is assumed as a C source file and simple.cpp is assumed as a C++ source file. The rest is done by cl.exe |
|||||
|
|
Whether it is a c or c++ program only matters when you are trying to compile c++ code with a c compiler. A c++ program is able to run every piece of c code (as it is buit upon c, hence the ++ that indicates an incrementation of c). Opposite, a c program csn not necissarily run a c++ program, as pointed out several times above. |
|||||||||||||||
|
|
Formally it is C++, nevertheless.
|
|||
|
|
|
It's a C++ code (iostream is C++ library and namespaces are C++ feature), but it has an error - printf() is function of stdio, wich is not included in this case. |
|||
|
|
|
It's a valid C++ program but an invalid C program! And yeah that's cause of the namespace. But its going to be compiler specific. Some may run it while others wont. |
|||
|
|
|
It is a C++ program. If you choose With In C++, you can do a thing with different ways. for example STRING in C++:
You should choose which way you want to implement. Finally: C++ language does not LIMIT you, you are FREE even for functional programming. Functional Programming Using C++ Templates: http://accu.org/index.php/journals/1422 |
|||||
|
|
it is a C++ program. Cause you're imported the namespace - which is a C++ feature. You're used only a C++ compiler to compile this.
a C compiler will give you error on |
|||
|
|
|
Really how i decide is assuming there is a good compiler for the languages in question decide if its C or C++ by asking is it a library? if not i'll go with C++ bc theres no reason not to. If it is a library i ask if i want to have an interface for other languages. Which typically means i need a C interface. So knowing i have a C interface i'll have to make i then decide if its simple enough to do all in C or do i want to use some C++ features or library code such as containers like deque, list and map. Actually by default i do everything in C# unless i know i am writing an app that will take 100% of the CPU for minutes at a time. Another consideration is if there is a good library but typically libraries are in C and in my .NET case there is usually a fair or good library in .NET Thats how i like to decide ;) |
|||
|
Loved the question :) I have never seen people ripping apart a simple code in this manner. :) The only reason why I would call this code as c++ is because of |
|||
|
|
|
I suppose it depends on how you use your terminology. I use "c-style program" to indicate a c-like program and C++ program to indicate an OO-style program. Many C++ programs are written c-style. Heck, even if your classes are grouped into objects it's still pretty much c-style until you are using polymorphism for your own classes in the place of switches and long if/else chains. I don't see much of a point of differentiating between c code that will run on a c compiler and c code that will run on a c++ compiler. So I'd look at that and say it's a c program, but my terminology obviously doesn't match everyone else's and I wouldn't just leap out and give either answer until I understood the intention. |
||||
|
|
|
Assuming a normal C++ build environment, this is incorrect C++ code. The include style and In C, The printf and getchar use shows that its probably been written by someone who is more used to C code. If it worked, it worked out of sheer luck. But it is C++ code with a missing include line. |
||||
|
|
<cstdio>. – Matteo Italia Oct 3 '11 at 9:05