If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to produce the following output; ABCDEFGFEDCBA ABCDEF FEDCBA ABCDE EDCBA ABCD DCBA ABC CBA AB BA A A
17 Answers ABC, College School Exams Tests,
what do you mean by enumeration constant?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
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 main function in c?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
Is the following code legal? struct a { int x; struct a b; }
What are the Advantages of using macro
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
What is the value of h?
what is the coding of display the factorial of a number using array and function?