can anybody please tell me how to write a program in
c++,without using semicolon(;)
Answers were Sorted based on User's Feedback
Answer / jasbir singh
void main()
{
if(0)
{
}
}
if you use void with main function, you have no need to
return a value.
Is This Answer Correct ? | 16 Yes | 4 No |
Answer / sanjay singh
void main()
{
if(printf("i can try to write ... "))
{
}
}
Is This Answer Correct ? | 16 Yes | 6 No |
Answer / anonymous
#include<iostream.h>
void main()
{
}
/*this is also a c++ prog.it is never said dat main body
cannot be empty*/
Is This Answer Correct ? | 8 Yes | 2 No |
Answer / ck giri from biratnagar
#include<iostream.h>
void main()
{
while(0)
{}
}
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / rayn
#define SEMICOLON ;
int main()
{
cout << "Hello World!\n" SEMICOLON
return 0 SEMICOLON
}
Is This Answer Correct ? | 1 Yes | 2 No |
Answer / amit
int main()
{
if(printf("can anybody tell me how to write "))
{
}
return 0;
}
Is This Answer Correct ? | 3 Yes | 22 No |
State two differences between C and C++.
What is a manipulator in c++?
Should I learn c++ c?
Explain how a pointer to function can be declared in C++?
Explain one method to process an entire string as one unit?
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].
Is java easier than c++?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
what is Member Functions in Classes?
Which field is used in c++?
Copy Linked List using recursive function?
What are the different types of Storage classes?