how can we print hellow world programme without using semicolon
Answers were Sorted based on User's Feedback
Answer / akbar
#include<stdio.h>
int main()
{
printf("Hello World
");
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rohit kakade
#include<stdio.h>
#include<conio.h>
void main(void)
{
while(printf("HellO")==0)
getch();
}
| Is This Answer Correct ? | 1 Yes | 4 No |
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
List a few unconditional control statement in c.
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
What are different types of variables in c?
i have a written test for microland please give me test pattern
How can a process change an environment variable in its caller?
in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
How many levels of pointers can you have?
How can I call a function, given its name as a string?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?