#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
Write a Program to find whether the given number or string is palindrome.
What is a shell structure examples?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
How can I make sure that my program is the only one accessing a file?
What are the types of variables in c?
What is a lvalue
Why c is called object oriented language?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Explain logical errors? Compare with syntax errors.
Difference between pass by reference and pass by value?
What are the two types of functions in c?
What is a file descriptor in c?
Mention four important string handling functions in c languages .
What is the advantage of using #define to declare a constant?
Explain the difference between malloc() and calloc() in c?