array of pointer
pointer to array
pointer to pointer
Answer Posted / harisankar.k.r.ctl
no
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
The __________ attribute is used to announce variables based on definitions of columns in a table?
What is pass by reference in c?
What are reserved words with a programming language?
What does calloc stand for?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is the difference between array_name and &array_name?
What is the heap in c?
What is the advantage of an array over individual variables?
What is include directive in c?
What is hashing in c?
What is a static function in c?
What are logical errors and how does it differ from syntax errors?
Can we declare variable anywhere in c?
What is null pointer constant?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)