Post New Answer View All Answers
Which header file is used for clrscr?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Explain what is operator promotion?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
How are variables declared in c?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What library is sizeof in c?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
How can I insert or delete a line (or record) in the middle of a file?
How do you view the path?
What are high level languages like C and FORTRAN also known as?
How can I dynamically allocate arrays?
What is the use of gets and puts?
What is dangling pointer in c?
What is a good data structure to use for storing lines of text?