wat is the output
int main()
{
char s1[]="Hello";
char s2[]="Hello";
if(s1==s2)
printf("Same");
else
printf("Diff");
}
Answer Posted / prachi
ans is diff
| Is This Answer Correct ? | 15 Yes | 2 No |
Post New Answer View All Answers
Difference between Shallow copy and Deep copy?
Explain function?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
how to find anagram without using string functions using only loops in c programming
Why is c called c?
What does c mean?
What does it mean when a pointer is used in an if statement?
Why do we use c for the speed of light?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the difference between far and near ?
What is indirection?
What is an example of structure?
What are the features of c language?
Here is a neat trick for checking whether two strings are equal
Compare and contrast compilers from interpreters.