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 / beginner in learning c!!

An array can never contain dissimilar elements. You dont
call that derived data type as array!! so the two questions
hav NO ANSWER.. :)

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does the error 'Null Pointer Assignment' mean and what causes this error?

743


What is non linear data structure in c?

577


Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

570


Can a file other than a .h file be included with #include?

686


Explain pointer. What are function pointers in C?

628






Hi can anyone tell what is a start up code?

1617


Explain what is a stream?

609


Find MAXIMUM of three distinct integers using a single C statement

624


Explain the term printf() and scanf() used in c language?

597


What is nested structure with example?

625


Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

5056


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

920


Who invented b language?

919


I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.

1498


What is const keyword in c?

751