Answer Posted / esakkimuthu.s.
pointer is a variable which contain the address of another variable.pointer variable must be declare with * operator
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What is c language in simple words?
What is hashing in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
List the difference between a "copy constructor" and a "assignment operator"?
Does c have an equivalent to pascals with statement?
How can I manipulate individual bits?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is adt in c programming?
What is nested structure?
Can we use any name in place of argv and argc as command line arguments?
How does struct work in c?
Can we add pointers together?
Can you please explain the difference between strcpy() and memcpy() function?
Define VARIABLE?