How can I manipulate strings of multibyte characters?


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

Post New Answer

More C Interview Questions

what are the stages of compilation

1 Answers   Bosch,


What are qualifiers and modifiers c?

0 Answers  


What are the general description for loop statement and available loop types in c?

0 Answers  


What is a memory leak in structures? How can we rectify that?

2 Answers  


How can I split up a string into whitespace-separated fields?

0 Answers  






Why header files are used?

0 Answers  


What are the types of variables in c?

0 Answers  


Explain threaded binary trees?

0 Answers  


What is a structure member in c?

0 Answers  


write a program to gat the digt sum of a number (et. 15= >1+5=6)

2 Answers  


Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250

0 Answers  


#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); }

0 Answers   Wilco,


Categories