wat is the output
int main()
{
char s1[]="Hello";
char s2[]="Hello";
if(s1==s2)
printf("Same");
else
printf("Diff");
}
Answer Posted / jitendra nath das
Ans is Diff.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
How is pointer initialized in c?
what is the syallabus of computer science students in group- 1?
Calculate 1*2*3*____*n using recursive function??
Why cant I open a file by its explicit path?
Explain what is the difference between a string and an array?
What is ctrl c called?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is the difference between pure virtual function and virtual function?
How was c created?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Explain b+ tree?
Tell me about low level programming languages.
What do you mean by recursion in c?
is it possible to create your own header files?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0