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
When can you use a pointer with a function?
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.
how to create duplicate link list using C???
How do we print only part of a string in c?
What is the stack in c?
What are the c keywords?
What are the types of i/o functions?
Who is the main contributor in designing the c language after dennis ritchie?
What is the size of empty structure in c?
What is the difference between text and binary i/o?
How can you invoke another program from within a C program?
Why do we use header files in c?
What are loops in c?
How many types of functions are there in c?
What is volatile variable in c with example?