Why c language is called c?
No Answer is Posted For this Question
Be the First to Post Answer
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
what is the difference between unix os and linux os
what is the use of a array in c
wat is the meaning of c?
Explain what a Binary Search Tree is.
Do you know what are the properties of union in c?
an algorithem for the implementation of circular doubly linked list
What is null in c?
What does extern mean in a function declaration?
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
Using which language Test cases are added in .ptu file of RTRT unit testing???
What are macros in C?