#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
What the different types of arrays in c?
Are pointers integers in c?
Write a program to check palindrome number in c programming?
can we change the default calling convention in c if yes than how.........?
Is that possible to add pointers to each other?
Can two or more operators such as and be combined in a single line of program code?
What is the difference between malloc calloc and realloc in c?
Tell me about low level programming languages.
What is a ternary operator in c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
How pointers are declared?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Is python a c language?
Explain the properties of union. What is the size of a union variable
Did c have any year 2000 problems?