Thursday, September 19, 2013

Print Your Name without using semicolon in program in C/C++

C

#include<stdio.h>
int main()
{
if(printf("Your Name"))
}


C++

#include<iostream>
using namespace std;
int main()
{
if(cout<<"Your Name")
return 0;
}

No comments:

Post a Comment