What is c language in simple words?
No Answer is Posted For this Question
Be the First to Post Answer
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
What are the usage of pointer in c?
Write the Program to reverse a string using pointers.
What's the total generic pointer type?
What is the difference between typedef struct and struct?
What does volatile do?
Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
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 b/w Structure & Class?
What’s a signal? Explain what do I use signals for?
How we can write a value to an address using macro..?
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??