print ur name without using any semicolon in c/c++....
Answers were Sorted based on User's Feedback
Answer / madhu
This is the correct answer,
Question is without using semicolon,
#include<stdio.h>
int main()
{
if(printf("Madhu"))
{
}
}
| Is This Answer Correct ? | 87 Yes | 12 No |
Answer / 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 |
Answer / amit mishra
#include<stdio.h>
void main()
{
if (clrscr())
if(printf("\n Asheesh sharma"))
{
}
if(printf("\n Asha sharma"))
{
}
if(printf("\n Amit mishra"))
{
}
if(printf("\n Ankit mishra"))
{
}
if(getch())
{
}
}
| Is This Answer Correct ? | 19 Yes | 2 No |
Answer / vinay
#include<stdio.h>
main()
{ while(!printf("vinay"))
{
}}
| Is This Answer Correct ? | 17 Yes | 6 No |
Answer / harendra kumar
#include<stdio.h>
void main()
{
if(printf("harru"))
{
}
}
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / deepjoy das
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Deep"))
{
}
}
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / vidya
#include<stdio.h>
int main()
{
switch(printf("vidya"))
{
}
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / kumutha
#include<stdio.h>
void main()
{
if(printf("kumutha"))
}
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / bony islam laskar
check it out........ur search is ovr.
#include<stdio.h>
void main()
{
if(printf("bony"))
}
| Is This Answer Correct ? | 34 Yes | 34 No |
Answer / manish kumar
#include<stdio.h>
#include<conio.h>
int main()
{
while(printf("manish")&&getch())
{
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Define macros.
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
How can I access memory located at a certain address?
what is the use of #pragma pack, wer it is used?
what is the use of keyword volatile??
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
Write a simple code fragment that will check if a number is positive or negative.
Write a program to compute the following 1!+2!+...n!
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,
What is an example of structure?