Answer Posted / shrikantauti
it appends two strings. for this strcat() is used.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What does c in a circle mean?
What are the types of functions in c?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Why c is called top down?
What is the process to create increment and decrement stamen in c?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
Why c is known as a mother language?
What are dangling pointers? How are dangling pointers different from memory leaks?
Can we declare variable anywhere in c?
Why c is procedure oriented?
How many loops are there in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What’s a signal? Explain what do I use signals for?