#include<string.h>
void main()
{
String s1[]={"swathi"};
string s2[]={"maddimsetti"};
s1[]=s[];
printf("%s",s1[]);
}
Answer Posted / vivek mathan
THE ANSWER IS "ERROR";
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
What is typedf?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Explain what are the different file extensions involved when programming in c?
When should you not use a type cast?
What is the difference between memcpy and memmove?
What are header files and what are its uses in C programming?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Implement bit Array in C.
What is the purpose of ftell?
What are the advantages of external class?
Explain the Difference between the New and Malloc keyword.
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What does volatile do?
Explain the priority queues?