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 |
Differentiate between the expression “++a” and “a++”?
what is the difference between #include<> and #include”…”?
Does c have circular shift operators?
Where are the auto variables stored?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?