can anybody please tell me how to write a program in
c++,without using semicolon(;)

Answers were Sorted based on User's Feedback



can anybody please tell me how to write a program in c++,without using semicolon(;)..

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

can anybody please tell me how to write a program in c++,without using semicolon(;)..

Answer / sanjay singh

void main()
{

if(printf("i can try to write ... "))
{
}
}

Is This Answer Correct ?    16 Yes 6 No

can anybody please tell me how to write a program in c++,without using semicolon(;)..

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

can anybody please tell me how to write a program in c++,without using semicolon(;)..

Answer / ck giri from biratnagar

#include<iostream.h>
void main()
{
while(0)
{}
}

Is This Answer Correct ?    6 Yes 1 No

can anybody please tell me how to write a program in c++,without using semicolon(;)..

Answer / rayn

#define SEMICOLON ;

int main()
{
cout << "Hello World!\n" SEMICOLON
return 0 SEMICOLON
}

Is This Answer Correct ?    1 Yes 2 No

can anybody please tell me how to write a program in c++,without using semicolon(;)..

Answer / amit

int main()
{

if(printf("can anybody tell me how to write "))
{
}
return 0;
}

Is This Answer Correct ?    3 Yes 22 No

Post New Answer

More C++ General Interview Questions

Define a nested class.

0 Answers  


Why is c++ so fast?

0 Answers  


How compile and run c++ program in turbo c++?

0 Answers  


Explain the concept of copy constructor?

0 Answers  


What data encapsulation is in c++?

0 Answers  






How do you clear a buffer in c++?

0 Answers  


Differentiate between an external iterator and an internal iterator?

0 Answers  


What are structures and unions?

0 Answers  


whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };

5 Answers   Huawei,


What are C++ inline functions?

1 Answers  


What is the difference between an external iterator and an internal iterator?

0 Answers  


What is different in C++, compare with unix?

0 Answers  


Categories