A array contains dissimilar element how can we count,
and
A array contains dissimilar element how can we store in
another array with out repetition.
Answer Posted / abby
array is a homogenous collection of elements, it cannot
contain dissimilar elements.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain what is wrong with this statement? Myname = ?robin?;
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Explain Basic concepts of C language?
How can you draw circles in C?
What is a union?
Can we assign integer value to char in c?
What is structure in c explain with example?
What is the -> in c?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is extern keyword in c?
How many types of functions are there in c?
Can we access the array using a pointer in c language?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Why is c platform dependent?