What are the types of pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me about low level programming languages.
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
What is typedef struct in c?
what is the meaning of 'c' language
write a c program to add two integer numbers without using arithmetic operator +
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
What is auto keyword in c?
Is c language still used?
How can you find out how much memory is available?
How to get string length of given string in c?
explain what are pointers?
what is constant pointer?