where do we use structure pointer?
Answer / naveen shukla
we uses structure pointer when we have to point to the whole
object and we can access all the values of the data in the
object.
when we want to keep the reference of the structure variable
| Is This Answer Correct ? | 2 Yes | 0 No |
What is the purpose of the fflush() function in C?
How does placing some code lines between the comment symbol help in debugging the code?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
What are the advantages of c language?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
Is c programming hard?
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
Explain how can type-insensitive macros be created?
What is string function in c?
Which of these functions is safer to use : fgets(), gets()? Why?
What is the deal on sprintf_s return value?