What do the functions atoi(), itoa() and gcvt() do?
No Answer is Posted For this Question
Be the First to Post Answer
What is mean by data types in c?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
write a program to print data of 5 five students with structures?
What are control structures? What are the different types?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Write a C function to search a number in the given list of numbers. donot use printf and scanf
what is the self-referential structure?
Explain what is the difference between #include and #include 'file' ?
Do character constants represent numerical values?
Can true be a variable name in c?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
What is pragma in c?