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
Write a program of prime number using recursion.
write a c program to find the sum of five entered numbers using an array named number
What is the purpose of main() function?
What is union and structure?
Explain about C function prototype?
Explain what are multibyte characters?
Who invented bcpl language?
What are structures and unions? State differencves between them.
Differentiate between the expression “++a” and “a++”?
In C programming, what command or code can be used to determine if a number of odd or even?
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
Explain what is meant by 'bit masking'?
what do you mean by enumeration constant?
What does & mean in scanf?
How to write a multi-statement macro?