#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 different between auto and local static? why should we use local static?
What is meant by operator precedence?
What is array of structure in c programming?
What is the difference between printf and scanf )?
What is sizeof in c?
What is the purpose of sprintf() function?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is the heap in c?
What is unsigned int in c?
Difference between strcpy() and memcpy() function?
How do you do dynamic memory allocation in C applications?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?