Mention four important string handling functions in c languages .
No Answer is Posted For this Question
Be the First to Post Answer
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?
When we use void main and int main?
Why c is known as a mother language?
How do you search data in a data file using random access method?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Where in memory are my variables stored?
How to write a program for swapping two strings without using 3rd variable and without using string functions.
how to copy a string without using c function
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.