print ur name without using any semicolon in c/c++....
Answer Posted / manish kumar
#include<stdio.h>
#include<conio.h>
int main()
{
while(printf("manish")&&getch())
{
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are void pointers in c?
What does c mean before a date?
Write a program to implement queue.
What is a stream?
How many types of errors are there in c language? Explain
What is the correct code to have following output in c using nested for loop?
Explain heap and queue.
What is output redirection?
What happens if a header file is included twice?
What does %p mean c?
write a progrmm in c language take user interface generate table using for loop?
Write a program to print fibonacci series without using recursion?
How can I dynamically allocate arrays?
Why we not create function inside function.
What should malloc() do? Return a null pointer or a pointer to 0 bytes?