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
Explain how can you determine the size of an allocated portion of memory?
What are the 4 data types?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the process to create increment and decrement stamen in c?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
Explain how do you search data in a data file using random access method?
Where we use clrscr in c?
a c code by using memory allocation for add ,multiply of sprase matrixes
Is sizeof a keyword in c?
Write a program to print fibonacci series without using recursion?
Explain how can I manipulate strings of multibyte characters?
What is an example of structure?
Explain what is the advantage of a random access file?
Difference between malloc() and calloc() function?