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
diff between exptected result and requirement?
What are the three constants used in c?
How would you obtain the current time and difference between two times?
In C language what is a 'dangling pointer'?
How can you pass an array to a function by value?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What is the size of enum in bytes?
Which is an example of a structural homology?
What is a lvalue
How to establish connection with oracle database software from c language?
What is scope of variable in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Can the size of an array be declared at runtime?
Does * p ++ increment p or what it points to?
Distinguish between actual and formal arguments.