Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

#include<stdio.h>
main()
{
char s1[]="Ramco";
char s2[]="Systems";
s1=s2;
printf("%s",s1);
}
Find the output

Answer Posted / mahadev shinde

ncompatible types in assignment of `s2' to `s1'

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

please send me the code for multiplying sparse matrix using c

2222


What are the properties of union in c?

1111


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

1118


formula to convert 2500mmh2o into m3/hr

1049


What are type modifiers in c?

1096


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

2148


What is the use of sizeof () in c?

1099


Explain the properties of union.

1135


Why is not a pointer null after calling free?

1073


Can you pass an entire structure to functions?

1172


Tell me what are bitwise shift operators?

1172


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

1155


What is calloc()?

1131


What is the use of a conditional inclusion statement in C?

1108


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2850