wap to print "hello world" without using the main function.
Answers were Sorted based on User's Feedback
Answer / raghuram
To display "hello world"
printf("\"hello world\"");
| Is This Answer Correct ? | 5 Yes | 57 No |
Answer / guest
#include<stdio.h>
#include<conio.h>
printf("hello world");
| Is This Answer Correct ? | 3 Yes | 62 No |
Explain how can I avoid the abort, retry, fail messages?
what is op? for(c=0;c=1000;c++) printf("%c",c);
What is difference between %d and %i in c?
What is a const pointer in c?
Can we declare a function inside a function in c?
What is double pointer?
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
What are the differences between Structures and Arrays?
how to find sum of digits in C?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is the modulus operator?