Write a C program to count the number of email on text
No Answer is Posted For this Question
Be the First to Post Answer
What is merge sort in c?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?
what are far pointers?
what are the languages used in c#?
What is a string?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
program to find the ASCII value of a number
how can we use static and extern?and where can we use this?
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
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?
why Language C is plateform dependent