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 |
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
Why flag is used in c?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
Define function pointers?
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
How can you increase the allowable number of simultaneously open files?
diff between exptected result and requirement?
how can we use static and extern?and where can we use this?
post new interiew question and aptitude test papers
What is a newline escape sequence?
What are variables c?