How can you draw circles in C?
No Answer is Posted For this Question
Be the First to Post Answer
what are enumerations in C
How does sizeof know array size?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
How can I find the day of the week given the date?
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
What is the difference between c &c++?
Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????
What is a const pointer in c?
difference between memcpy and strcpy
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Explain how can I remove the trailing spaces from a string?