What standard functions are available to manipulate strings?
No Answer is Posted For this Question
Be the First to Post Answer
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 Answers TCS, Vimukti Technologies,
what are enumerations in C
Why is event driven programming or procedural programming, better within specific scenario?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What is a far pointer in c?
Differentiate fundamental data types and derived data types in C.
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Explain bit masking in c?
Explain how do you declare an array that will hold more than 64kb of data?
Explain the use of fflush() function?
What is declaration and definition in c?