#include<string.h>
void main()
{
String s1[]={"swathi"};
string s2[]={"maddimsetti"};
s1[]=s[];
printf("%s",s1[]);
}
Answers were Sorted based on User's Feedback
program to print circle structure
What are the loops in c?
write a program which counts a product of array elements lower than 10.
Why array starts with index 0
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
Where we use clrscr in c?
What is a Deque?
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
What is indirect recursion? give an example?
Is that possible to store 32768 in an int data type variable?
Explain modulus operator. What are the restrictions of a modulus operator?
what is the difference between while and do while?