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
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
Explain how can I make sure that my program is the only one accessing a file?
why the execution starts from main function
difference between malloc and calloc
why do some people write if(0 == x) instead of if(x == 0)?
why array index always starts from zero??
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
What is void main () in c?
How do I get an accurate error status return from system on ms-dos?