how to write hello word without using semicolon at the end?
Answers were Sorted based on User's Feedback
#include<stdio.h>
void main()
{
if(printf("hello world"))
{
}
}
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / jithneder palle
int main(void)
{
if(printf("hello world"))
}
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / rajveer singh rana
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Hello world"))
getch();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
#include<stdio.h>
int main(void)
{
if(printf("hello world"));
return 0;
}
| Is This Answer Correct ? | 4 Yes | 4 No |
how to do in place reversal of a linked list(singly or doubly)?
How do I use void main?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
Explain command-line arguments in C.
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
What is this infamous null pointer, anyway?
What is action and transformation in spark?
how to find string length wihtout using c function?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
Tell me is null always defined as 0(zero)?