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

How do I know if my motherboard is 32 bit or 64 bit?

0 Answers  


What do you mean by multithreading?

0 Answers  


In general what is paging? and segmaentation?

2 Answers   Intelligroup,


Which one is not suitable for client-server application? 1. tcp/ip 2. message passing 3. rpc 4. none of the above

1 Answers  


How do I enable macros?

0 Answers  






In the context of memory management, what are placement and replacement algorithms?

1 Answers  


What are the different functions of Syntax phase, Scheduler?

1 Answers   Satyam,


Is it safe to cancel chkdsk?

0 Answers  


Is operating system a software?

0 Answers  


Can I use ie with google chrome?

0 Answers  


How does the cpu and the ram communicate?

0 Answers  


Explain the stipulations of c2 level security?

0 Answers  


Categories