what is difference between array of characters and string
Answer Posted / ashish pandey
String is a group of character and it is used double
quatation(""), but array of stringis used single
quatation('').
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
List out few of the applications that make use of Multilinked Structures?
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
What is the difference between memcpy and memmove?
With the help of using classes, write a program to add two numbers.
Here is a neat trick for checking whether two strings are equal
All technical questions
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
explain how do you use macro?
Does * p ++ increment p or what it points to?
How would you rename a function in C?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Explain how can I avoid the abort, retry, fail messages?
Explain how do you use a pointer to a function?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].