wat is the output
int main()
{
char s1[]="Hello";
char s2[]="Hello";
if(s1==s2)
printf("Same");
else
printf("Diff");
}
Answers were Sorted based on User's Feedback
What are the benefits of c language?
Write a program to reverse a given number in c language?
What is the difference between variable declaration and variable definition in c?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
Explain how can I avoid the abort, retry, fail messages?
What are the advantages of union?
Explain what is the difference between the expression '++a' and 'a++'?
who is first prime minister in india??
How reliable are floating-point comparisons?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is scope of variable in c?