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 |
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What is a loop?
What does a run-time "null pointer assignment" error mean?
main() { int a = 65; printf(ā%d %o %xā,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
What do you mean by dynamic memory allocation in c?
print out of string in this format; 1. "rajesh" 2. \n 3. %d
Do you know the purpose of 'register' keyword?
What is the right type to use for boolean values in c? Is there a standard type?
what is pointer ?
10 Answers Kernex Micro Systems,
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
Is array a primitive data type in c?
Prove or disprove P!=NP.