#include<string.h>
void main()
{
String s1[]={"swathi"};
string s2[]={"maddimsetti"};
s1[]=s[];
printf("%s",s1[]);
}
Answer Posted / madhavi
%d
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Why main is used in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is wrong with this program statement?
What does sizeof return c?
What is wrong with this program statement? void = 10;
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What is the use of in c?
Why use int main instead of void main?
How do you declare a variable that will hold string values?
What is the difference between far and near in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is the scope of local variable in c?