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 the 10 different models of writing an addition program in C language?
Write a factorial program using C.
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Explain what are linked list?
Why is c known as a mother language?
What is variable in c example?
Are there any problems with performing mathematical operations on different variable types?
What is strcpy() function?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
How to write a code for reverse of string without using string functions?
What will be the outcome of the following conditional statement if the value of variable s is 10?
How can you increase the allowable number of simultaneously open files?
Can include files be nested? How many levels deep can include files be nested?
What is omp_num_threads?
How will you declare an array of three function pointers where each function receives two ints and returns a float?