#include<string.h>
void main()
{
String s1[]={"swathi"};
string s2[]={"maddimsetti"};
s1[]=s[];
printf("%s",s1[]);
}
Answers were Sorted based on User's Feedback
What is the purpose of & in scanf?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
What are the different types of storage classes in C?
Differentiate Source Codes from Object Codes
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Explain how can you check to see whether a symbol is defined?
Explain the difference between call by value and call by reference in c language?
what is mean by Garbage collection ? Please answer me. Advance thanks.
How can I access an I o board directly?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
write a program to delete an item from a particular location of an linear array?