#include<stdio.h>
main()
{
char s1[]="Ramco";
char s2[]="Systems";
s1=s2;
printf("%s",s1);
}
what will happen if you executed this code?
Answer Posted / ramesh
u will get error like incompatible types in assignment
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
which type of aspect you want from the student.
Explain the difference between null pointer and void pointer.
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is the use of linkage in c language?
What does void main () mean?
what are the facialities provided by you after the selection of the student.
What is data types?
What Is The Difference Between Null And Void Pointer?
explain what are pointers?
Can 'this' pointer by used in the constructor?
What is the Purpose of 'extern' keyword in a function declaration?
What is sizeof int in c?
Why void is used in c?
difference between object file and executable file
Explain what is the advantage of a random access file?