Post New Answer View All Answers
What are multidimensional arrays?
How can you pass an array to a function by value?
Do you know pointer in c?
What is string in c language?
Do pointers store the address of value or the actual value of a variable?
What is the scope of global variable in c?
What is f'n in math?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Where can I get an ansi-compatible lint?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is the role of this pointer?
What does 4d mean in c?
What are Macros? What are its advantages and disadvantages?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;