#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 send me the code for multiplying sparse matrix using c
What are the properties of union in c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
formula to convert 2500mmh2o into m3/hr
What are type modifiers in c?
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.
What is the use of sizeof () in c?
Explain the properties of union.
Why is not a pointer null after calling free?
Can you pass an entire structure to functions?
Tell me what are bitwise shift operators?
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.
What is calloc()?
What is the use of a conditional inclusion statement in C?
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