#include<stdio.h>
main()
{
char s1[]="Ramco";
char s2[]="Systems";
s1=s2;
printf("%s",s1);
}
Find the output
Answer Posted / mahadev shinde
ncompatible types in assignment of `s2' to `s1'
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the right type to use for boolean values in c? Is there a standard type?
Should I learn data structures in c or python?
What does struct node * mean?
What is pointers in c with example?
What are qualifiers?
in linking some of os executables are linking name some of them
When is the “void” keyword used in a function?
What is merge sort in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What kind of structure is a house?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What do you mean by scope of a variable in c?
What is memcpy() function?
what is uses of .net
p*=(++q)++*--p when p=q=1 while(q<=6)