main()
{
charstr1="prakash";
charstr2="raju";
Str1=str2;
printf("\n%d",str1);
}

Answers were Sorted based on User's Feedback



main() { charstr1="prakash"; charstr2="raju"; Str1=str2; printf("\n%d&..

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

main() { charstr1="prakash"; charstr2="raju"; Str1=str2; printf("\n%d&..

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

main() { charstr1="prakash"; charstr2="raju"; Str1=str2; printf("\n%d&..

Answer / app

Error
Since address of different strings are compared

Is This Answer Correct ?    2 Yes 0 No

main() { charstr1="prakash"; charstr2="raju"; Str1=str2; printf("\n%d&..

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

main() { charstr1="prakash"; charstr2="raju"; Str1=str2; printf("\n%d&..

Answer / ashok kumar

error

Is This Answer Correct ?    0 Yes 0 No

main() { charstr1="prakash"; charstr2="raju"; Str1=str2; printf("\n%d&..

Answer / vignesh1988i

ascii value of 'r' will get printed

Is This Answer Correct ?    0 Yes 6 No

main() { charstr1="prakash"; charstr2="raju"; Str1=str2; printf("\n%d&..

Answer / vignesh1988i

may i know the reason for this error

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More Operating Systems General Concepts Interview Questions

Explain the difference between load-time dynamic linking and run-time dynamic linking?

0 Answers  


Are 64bit applications faster?

0 Answers  


Explain the concept of Thread Pool? what its Benefits?

0 Answers   Sans Pareil IT Services,


What is authentication in operating system?

0 Answers  


What are the 4 major types of operating system?

0 Answers  






Who does the memory management in operating system?

0 Answers  


What is the purpose of system programs?

0 Answers  


What is difference between program and x86?

0 Answers  


How do I do a system restore?

0 Answers  


What is basic concept of operating system?

0 Answers  


What are the different phases of software development?

3 Answers  


What is normal operating system?

0 Answers  


Categories