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


Please Help Members By Posting Answers For Below Questions

When can you use a pointer with a function?

773


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

1550


how to create duplicate link list using C???

2294


How do we print only part of a string in c?

827


What is the stack in c?

902


What are the c keywords?

984


What are the types of i/o functions?

994


Who is the main contributor in designing the c language after dennis ritchie?

794


What is the size of empty structure in c?

827


What is the difference between text and binary i/o?

807


How can you invoke another program from within a C program?

844


Why do we use header files in c?

828


What are loops in c?

792


How many types of functions are there in c?

820


What is volatile variable in c with example?

797