Write a program to print "hello world" without using a semicolon?
No Answer is Posted For this Question
Be the First to Post Answer
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
write a program for fibonaci series by using while loop in c?
What is #define size in c?
What is data type long in c?
Explain how many levels deep can include files be nested?
What is int main () in c?
How the C program can be compiled?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
Describe the modifier in c?
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is a program flowchart and explain how does it help in writing a program?