Write a program to print "hello world" without using a semicolon?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int i=5; printf("%d",i+++++i); }
How can I get random integers in a certain range?
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
What is const and volatile in c?
What is main () in c language?
Why is c so important?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
How can my program discover the complete pathname to the executable from which it was invoked?
#define f(x) main() { printf("\n%d",f(2+2)); }
What is integer constants?
What is the use of #include in c?
what is difference between c and c++