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 |
What is the explanation for the dangling pointer in c?
When a c file is executed there are many files that are automatically opened what are they files?
What is || operator and how does it function in a program?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
Can you assign a different address to an array tag?
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
How to set file pointer to beginning c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
What is #include cctype?