print ur name without using any semicolon in c/c++....
Answer Posted / gprabha
#include<stdio.h>
void main()
{
int i=1;
if(printf("Prabha"))
{
i++;
}
getch();
}
| Is This Answer Correct ? | 7 Yes | 16 No |
Post New Answer View All Answers
What are types of preprocessor in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
How to compare array with pointer in c?
What does d mean?
What is structure in c explain with example?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What are the restrictions of a modulus operator?
Are enumerations really portable?
Explain the advantages of using macro in c language?
What are integer variable, floating-point variable and character variable?
What is wrong with this statement? Myname = 'robin';
What are structure types in C?
Tell us bitwise shift operators?
How can you restore a redirected standard stream?
Differentiate between functions getch() and getche().