Explain what standard functions are available to manipulate strings?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Can we assign integer value to char in c?

0 Answers  


Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;

5 Answers   ITCO, Wipro,


Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

1 Answers  


. Write a program to get a string and to convert the 1st letter of it to uppercase

2 Answers   HTC,


what is software?

7 Answers   Wipro,


Explain what will be the outcome of the following conditional statement if the value of variable s is 10?

0 Answers  


What is auto keyword in c?

0 Answers  


What is modeling?

0 Answers  


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


will the program compile? int i; scanf(“%d”,i); printf(“%d”,i);

3 Answers  


Tell me when is a void pointer used?

0 Answers  


Explain the process of converting a Tree into a Binary Tree.

0 Answers   Ignou,


Categories