what wud be the output?

main()
{
char *str[]={
"MANISH"
"KUMAR"
"CHOUDHARY"
};
printf("\nstring1=%s",str[0]);
printf("\nstring2=%s",str[1]);
printf("\nstring3=%s",str[2]);

a)string1=Manish
string2=Kumar
string3=Choudhary

b)string1=Manish
string2=Manish
string3=Manish

c)string1=Manish Kumar Choudhary
string2=(null)
string3=(null)

d)Compiler error





Answers were Sorted based on User's Feedback



what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CH..

Answer / rakesh soni

c)string1=Manish Kumar Choudhary
string2=(null)
string3=(null)

Bcoz, at the time of initialization, we are giving "mainsh"
"kumar" "choudhary", which is not comma seprated. so "Manish
kumar choudhary" string goes on to 0 position of the array
of char pointer. rest of 2 string have null.

Is This Answer Correct ?    11 Yes 1 No

what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CH..

Answer / b subrahmanyam

What does the current output look like this ans is c)

string1=MANISH KUMAR CHOUDHARY
string2=null
string3=null

Is This Answer Correct ?    6 Yes 0 No

what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CH..

Answer / ramlal bishnoi

d) compiler error

Is This Answer Correct ?    6 Yes 1 No

what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CH..

Answer / guruprasad

Compiler Error= Initializer Syntax Error in function main();

Is This Answer Correct ?    1 Yes 0 No

what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CH..

Answer / vijay r15

ans is c
But 1printing mistake in s1 all characters should be in caps

Any dbt mail to raj.vijay55@gmail.com

Is This Answer Correct ?    1 Yes 0 No

what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CH..

Answer / ankush

The answer seems like....
string1=MANISHKUMARCHAUDHARY
string2=(null)
string3=
And curser is blinking after the last line....





ankushtyagi2008@gmail.com

Is This Answer Correct ?    1 Yes 0 No

what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CH..

Answer / shashi singh

compiler error

Is This Answer Correct ?    0 Yes 0 No

what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CH..

Answer / ravi

answer a

Is This Answer Correct ?    0 Yes 0 No

what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CH..

Answer / niranjan kumar niraj

d)Compile error

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More C Interview Questions

Explain what are compound statements?

0 Answers  


What is the use of typedef in structure in c?

0 Answers  


What are pointers? Why are they used?

0 Answers  


what is an array

5 Answers  


What do you mean by command line argument?

0 Answers   TCS,






develop algorithms to add polynomials (i) in one variable

0 Answers   Ignou, TCS,


What is the best organizational structure?

0 Answers  


Explain what does it mean when a pointer is used in an if statement?

0 Answers  


The program to allow the characters from the input received and send this function to a function check if the characters between letters a to z is a function of y joins as the characters main and output to otherwise return to the original function of the y characters

0 Answers  


a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list

0 Answers  


can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...

7 Answers  


enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program

1 Answers  


Categories