Answer Posted / anoop.a.jawalkar
An Array is a fixed-size sequenced of elements of the same
data type. It is simply a grouping of like-type data. In
its simplest form, an array can be used to represent a list
of number, or a list of names.
Some useful eg:.
* List of temperatures recorded every hour in a day,or a
month, or a year.
* list of employees in an organization.
* List of products and their cost sold by a store.......
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why is c known as a mother language?
What is the use of bit field?
What is static function in c?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What is #line?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Why we use conio h in c?
Explain how can I pad a string to a known length?
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
What is c language in simple words?
What are the different types of errors?
What does the function toupper() do?
How can you access memory located at a certain address?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
I heard that you have to include stdio.h before calling printf. Why?