#include<stdio.h>
main()
{
char s1[]="Ramco";
char s2[]="Systems";
s1=s2;
printf("%s",s1);
}
Find the output
Answer Posted / guest
error
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
what is the diffrenet bettwen HTTP and internet protocol
What will the preprocessor do for a program?
What is bubble sort technique in c?
What is structure pointer in c?
What is table lookup in c?
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 the red-black trees?
Can a program have two main functions?
How pointers are declared?
How can you allocate arrays or structures bigger than 64K?
write a program fibonacci series and palindrome program in c
why return type of main is not necessary in linux
how should functions be apportioned among source files?
What is the code for 3 questions and answer check in VisualBasic.Net?
What is the difference between local variable and global variable in c?