What is the maximum no. of arguments that can be given in a command line in C.?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
What is an auto variable in c?
How would you rename a function in C?
What is wrong with this declaration?
What is the use of ?: Operator?
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
Write code for finding depth of tree
what is pointer
long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
18 Answers Acropolis, HCL, Intel, TCS,
What is the mean of this statement:: if(int i=0 * i=9)
What are the preprocessors?
What will be the output of x++ + ++x?