How to print "Hi World" without using semi colon?
Answer Posted / bhumit
main()
{
clrscr();
if(printf("HI World"))
getch();
}
| Is This Answer Correct ? | 20 Yes | 6 No |
Post New Answer View All Answers
Can include files be nested? How many levels deep can include files be nested?
Explain data types & how many data types supported by c?
When should the const modifier be used?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What do you mean by dynamic memory allocation in c? What functions are used?
How can I invoke another program or command and trap its output?
How can you invoke another program from within a C program?
What are actual arguments?
What is a nested loop?
What is switch in c?
Why c language is called c?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is data type long in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply