what is array?
Answers were Sorted based on User's Feedback
Answer / celisty aragon
is a systematic arrangement of objects, usually in rows and
columns.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / gunasekhar
array is an collection of elements with diff data type
| Is This Answer Correct ? | 67 Yes | 111 No |
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
how to copy a string without using c function
What does void main return?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
What is a global variable in c?
Can a file other than a .h file be included with #include?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Why is sizeof () an operator and not a function?
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
write a progam to compare the string using switch case?