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 |
What are the different properties of variable number of arguments?
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
what is void pointer?
64/square(4)
What are volatile variables?
program to find middle element of linklist?
write a c program for swapping two strings using pointer
What is alloca() and why is its use discouraged?
What oops means?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......