#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 / ramesh
u will get error like incompatible types in assignment
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
List out few of the applications that make use of Multilinked Structures?
What is the ANSI C Standard?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
Write a program to implement queue.
What is sizeof int in c?
Why double pointer is used in c?
How can you increase the size of a dynamically allocated array?
How can I do graphics in c?
What is a const pointer in c?
Why is c called c not d or e?
Can you pass an entire structure to functions?
How can I discover how many arguments a function was actually called with?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
How is = symbol different from == symbol in c programming?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.