What does void main return?
No Answer is Posted For this Question
Be the First to Post Answer
How can I find out how much memory is available?
Find greatest of two numbers using macro
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
Which is an example of a structural homology?
what is the difference b/w compiler and debugger?
In a byte, what is the maximum decimal number that you can accommodate?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What is preprocessor with example?
what is c programming?
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
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }