What do the functions atoi(), itoa() and gcvt() do?
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
Write a program to swap two numbers without using third variable in c?
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Explain high-order bytes.
largest Of three Number using without if condition?
what is the self-referential structure?
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is encapsulation?
What is the use of pragma in embedded c?