Why is c known as a mother language?
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 are different types of variables in c?
Can true be a variable name in c?
Why is struct padding needed?
how to do in place reversal of a linked list(singly or doubly)?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
What is signed and unsigned?
Program to simulate second clock
What are the disadvantages of c language?
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
how to capitalise first letter of each word in a given string?
What is the use of in c?