|
Question |
Rating |
View Answer |
|
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used? |
|
View Answer |
|
What is the difference between System.String and System.StringBuilder classes? |
|
View Answer |
|
How can I convert a number to a string? |
|
View Answer |
|
How can I convert a number to a string? |
|
View Answer |
|
How can i print a’%’ character in a print format string? |
|
View Answer |
|
How to get string in files and print the string in the reverse order? |
|
View Answer |
|
What is the difference between a string and an array?
|
|
View Answer |
|
Write a C program that will convert Simple Sentence to Complex/Compound Sentence. |
|
View Answer |
|
What is the advantage of using System.Text.StringBuilder over System.String? |
|
View Answer |
|
How do you print a string on the pointer? |
|
View Answer |
|
Write to program to accept any number upto 7 digits and convert this number into words like this e.g. 25525 :- twenty five thousands five hundred twenty five. |
|
View Answer |
|
What is wrong with the following c program? char *s1 = "hello"; char *s2 = "world"; char *s3 = strcat(s1, s2);
Please provide me explanations??
|
|
View Answer |
|
If a string variable contain "i am a good boy" then how a c program will print "boy good a am i".? |
|
View Answer |
|
Explain one method to process an entire string as one unit? |
|
View Answer |
|
What is the difference between a string and an array? |
|
View Answer |
|
How do you print only part of a string? |
|
View Answer |
|
What is the difference between strings and character arrays ? |
|
View Answer |
|
Tell me the difference between strdup and strcpy? |
|
View Answer |
|
Why doesn’t strcat (string, ‘!’); work ? |
|
View Answer |
|
How can I convert a string to a number? |
|
View Answer |