main()
{
charstr1="prakash";
charstr2="raju";
Str1=str2;
printf("\n%d",str1);
}
Answers were Sorted based on User's Feedback
Answer / kk
Error
An array of string cannot be directly assigned to other;
soln: char *str1="prakash"
char *str2="raju"
str1=str2;
| Is This Answer Correct ? | 17 Yes | 2 No |
Answer / naman patidar
compile time error at line 3 and 4.
can not assign string to char ( i.e. to str1 and str2).
| Is This Answer Correct ? | 14 Yes | 3 No |
Answer / app
Error
Since address of different strings are compared
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kas
well the program will run finely ... with some warnings
of course ...
This is what I got as "out put" of the program using Fedora13...
Warning: multi-character character constant
In function 'main'
Warning: overflow in implicit constant conversion ...
But the RESULT was given as the ASCII of the last character
of the second string ..
That is in this case the answer will be "117";
Hope it helps ... :D
| Is This Answer Correct ? | 1 Yes | 0 No |
What is a compiler?
How do I find the location of an excel file?
List at least three things that a running process might do that would cause the scheduler not to move it to the ready state when it stops running.
Can I use ie with google chrome?
Differentiate between the user mode and monitor mode.
What are the different process states?
Explain what is a semaphore?
Describe different job scheduling in operating systems?
Difference between Primary storage and secondary storage?
Explain briefly about, processor, assembler, compiler, loader, linker and the functions executed by them.
Differentiate between swapping and paging.
Can ram cause blue screen?