print ur name without using any semicolon in c/c++....

Answer Posted / vignesh1988i

#include<stdio.h>
#include<conio.h>
void main()
{
int i;
if(printf("vignesh s r "))
{
i=1;
}
getch();

}

Is This Answer Correct ?    72 Yes 47 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we need functions in c?

561


Write a program to print factorial of given number without using recursion?

569


Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

1866


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

600


List the difference between a "copy constructor" and a "assignment operator"?

584






What is the use of bitwise operator?

691


How is actual parameter different from the formal parameter?

591


Is main is a keyword in c?

610


can we change the default calling convention in c if yes than how.........?

2035


What is the use of in c?

578


Explain what is #line used for?

608


Why is a semicolon (;) put at the end of every program statement?

628


Explain that why C is procedural?

660


What does int main () mean?

551


Explain Function Pointer?

681