#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 is the difference between procedural and declarative language?
How variables are declared in c?
how should functions be apportioned among source files?
What is a spanning Tree?
What are type modifiers in c?
Write a program to print ASCII code for a given digit.
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
How can you read a directory in a C program?
write a program to display all prime numbers
What is null pointer constant?
how to find anagram without using string functions using only loops in c programming
Is null valid for pointers to functions?
What are loops in c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What do you mean by a local block?