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 concept of the multi-processor systems or parallel systems?

0 Answers  


What is the multi-treade and models (explain each models)?

0 Answers  


What first program that the computer runs when the power is turn on?

0 Answers   Arigo Infotech,


Does ram affect excel performance?

0 Answers  


What is the advantage of a multiprocessor system?

0 Answers  






How do I search in terminal?

0 Answers  


What is the meaning of Thread Priority?

0 Answers  


Stable storage cannot be implemented. (A) Explain why it cannot be. (B) Explain how database system deal with database applications

0 Answers  


What is busy waiting?

3 Answers  


What are the main functions of a kernel?

0 Answers  


How are server systems classified?

0 Answers  


Explain an idle thread?

0 Answers  


Categories