IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
Answer Posted / biranchi parida
generally in turbo c++ 3.0 to above version it can't
possible but possible if we declared float linking point
declaration
in such way globally after header file
float a,*b;
b=&a;
after this declaration structure can take array
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the importance of c in your views?
What is the purpose of clrscr () printf () and getch ()?
Can you write a programmer for FACTORIAL using recursion?
What is extern storage class in c?
Can we change the value of static variable in c?
Can we initialize extern variable in c?
What do you mean by command line argument?
What are the types of data files?
Explain what is gets() function?
Differentiate between declaring a variable and defining a variable?
What are actual arguments?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is this pointer in c plus plus?
What are the applications of c language?
How do you generate random numbers in C?