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
When a c file is executed there are many files that are automatically opened what are they files?
Why do we use int main?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Explain what is the difference between null and nul?
What is putchar() function?
Can a pointer be volatile in c?
In C language what is a 'dangling pointer'?
What is structure padding in c?
What is volatile keyword in c?
What is volatile variable how do you declare it?
Why is event driven programming or procedural programming, better within specific scenario?
How do you write a program which produces its own source code as output?
What is indirection? How many levels of pointers can you have?
Explain do array subscripts always start with zero?
What do you mean by a sequential access file?