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
write a program for the normal snake games find in most of the mobiles.
What is static and auto variables in c?
Define Spanning-Tree Protocol (STP)
Which control loop is recommended if you have to execute set of statements for fixed number of times?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Why do we use null pointer?
What is the heap?
Is a pointer a kind of array?
What is the difference between the expression “++a” and “a++”?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Explain how do you print an address?
How can I copy just a portion of a string?
Differentiate between #include<...> and #include '...'
What is an auto variable in c?
What is #ifdef ? What is its application?