R
Q. What is the output of C program?
int main() { char str1[] = "FIRST"; char str2[20]; strcpy(str2,str1); printf("%s %s ",str1,str2); printf("%d", (str1!=str2)); printf("%d", strcmp(str1,str2)); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Members of a union are accessed as________________.
Q. What is the output of C program?
Q. How many byte(s) does a short type take in C?
Q. An uninitialized pointer in C is called ___
Q. What is the output of the C Program.?
Q. What is the output of the C Program?
Q. How many type of conversion are there in c?
Q. What is the output of C Program.?
Discusssion
Login to discuss.