wap to print "hello world" without using the main function.
Answer Posted / nitish_bhasin
#include<stdio.h>
#define nitish main
void nitish()
{
printf("Hello World");
}
| Is This Answer Correct ? | 40 Yes | 20 No |
Post New Answer View All Answers
All technical questions
List the difference between a "copy constructor" and a "assignment operator"?
Explain what is a static function?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Is there any possibility to create customized header file with c programming language?
What does %d do in c?
How do I convert a string to all upper or lower case?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Explain the term printf() and scanf() used in c language?
What is variables in c?
What is the difference between malloc() and calloc() function in c language?
Explain what are the standard predefined macros?
How do I create a directory? How do I remove a directory (and its contents)?
What is the difference between text and binary modes?
What does 2n 4c mean?