print ur name without using any semicolon in c/c++....
Answer Posted / vidya
#include<stdio.h>
int main()
{
switch(printf("vidya"))
{
}
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Explain that why C is procedural?
What is double pointer in c?
Write a Program to find whether the given number or string is palindrome.
Is it better to use a macro or a function?
Why is c so powerful?
What are the similarities between c and c++?
Can the curly brackets { } be used to enclose a single line of code?
When the macros gets expanded?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What does the function toupper() do?
Explain how can I read and write comma-delimited text?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is d'n in c?
When is a null pointer used?
What is the translation phases used in c language?