print ur name without using any semicolon in c/c++....
Answers were Sorted based on User's Feedback
Answer / sushma rai
#include<stdio.h>
#include<conio.h>
void main()
{
scanf("%s",printf("sushma"));
}
| Is This Answer Correct ? | 5 Yes | 42 No |
What are shell structures used for?
I came across some code that puts a (void) cast before each call to printf. Why?
How do you write a program which produces its own source code as its output?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
Why do we use c for the speed of light?
Can one function call another?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What's wrong with "char *p = malloc(10);" ?
What is the deal on sprintf_s return value?
Explain how do you generate random numbers in c?
What is a good data structure to use for storing lines of text?
write a program to display reverse of a number using for loop?