Explain how can I manipulate strings of multibyte characters?
No Answer is Posted For this Question
Be the First to Post Answer
When should a type cast not be used?
How can I generate floating-point random numbers?
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
write a program which counts a product of array elements lower than 10.
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?
String concatenation
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
the question is that what you have been doing all these periods (one year gap)
Can u return two values using return keyword? If yes, how? If no, why?
program to convert a integer to string in c language'
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these