Explain which function in c can be used to append a string to another string?
No Answer is Posted For this Question
Be the First to Post Answer
what are the compilation steps? ( i want inside the compiler )
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
Why do we use c for the speed of light?
What’s a signal? Explain what do I use signals for?
What are keywords c?
What are valid signatures for the Main function?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
How can a string be converted to a number?
find the minimum of three values inputted by the user
What are disadvantages of C language.
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"); }