#include<stdio.h>
main()
{
char s1[]="Ramco";
char s2[]="Systems";
s1=s2;
printf("%s",s1);
}

what will happen if you executed this code?

Answer Posted / mannucse

syste

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to find anagram without using string functions using only loops in c programming

2723


What is external variable in c?

620


An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above

713


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

604


How do you redirect a standard stream?

631






Which are low level languages?

645


Explain how can I pad a string to a known length?

662


What are the disadvantages of a shell structure?

702


which is an algorithm for sorting in a growing Lexicographic order

1404


What is || operator and how does it function in a program?

638


Is this program statement valid? INT = 10.50;

694


What is static function in c?

641


the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?

571


Write the test cases for checking a variable having value in range -10.0 to +10.0?

1828


Explain what is wrong in this statement?

642