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 |
character array A[12] can hold
what is the structure?
Tell me the use of bit field in c language?
Why main function is special give two reasons?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
what does static variable mean?
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
how to find a 5th bit is set in c program
Write a programe print the sum of series 0,1,2,.....10
Can you add pointers together? Why would you?
What is declaration and definition in c?
If the static variable is declared as global, will it be same as extern?