#include<stdio.h>
main()
{
char s1[]="Ramco";
char s2[]="Systems";
s1=s2;
printf("%s",s1);
}
Find the output
Answer Posted / ankit garg
it will give an error bcoz here we do not give the header
file for string ( #include<string.h>) ... and we can not
use the string without it....
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Is it better to use a macro or a function?
What is optimization in c?
What is the use of volatile?
What is NULL pointer?
Can we assign string to char pointer?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What is include directive in c?
How is actual parameter different from the formal parameter?
How many data structures are there in c?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Differentiate Source Codes from Object Codes
Can we add pointers together?
How to find a missed value, if you want to store 100 values in a 99 sized array?
#include