Answer Posted / dilip
Array is a collection of number of element and collection
of data type
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Tell me about low level programming languages.
What is include directive in c?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Is array name a pointer?
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); }
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
Which function in C can be used to append a string to another string?
What is an operator?
Can we change the value of static variable in c?
What is the heap?
State the difference between x3 and x[3].
Why is c called a structured programming language?
What is graph in c?
Why is c called "mother" language?