Q: 20
What happens when you attempt to compile and run the following code?
#include
using namespace std;
void print(char *c);
int main (int argc, const char * argv[])
{
print("Test");
return 0;
}
void print(char *c)
{
cout<<c;
}
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.