1. What will be the output of the following programs.
a) #include <stdio.h>
Main()
{
Int x=4;
While(x==1)
{
X=x-1;
Printf(“%d”,x);
--x;
}
}

Answers were Sorted based on User's Feedback



1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x..

Answer / mani

it has some error............

Is This Answer Correct ?    6 Yes 0 No

1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x..

Answer / rohit

variable X have not been defined. so it has an error...........

Is This Answer Correct ?    3 Yes 0 No

1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x..

Answer / raja

In the following code snippet
#include <stdio.h>
Main()
{
Int x=4;
While(x==1)
{
X=x-1;
Printf(“%d”,x);
--x;
}
}
everything is fine except the typing mistake. C is a case sensitive language. So if u give Main instead of main u will get a compiler error. So Main, Int, While, Printf should be use as a main, int, while, printf and the X in line 7 should be x.
The correct program is
#include <stdio.h>
main()
{
int x=4;
while(x==1)
{
x=x-1;
printf("%d",x);
--x;
}
}
Nothing will get printed because x != 1

Is This Answer Correct ?    2 Yes 0 No

1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x..

Answer / bhavani

i think x initialization wrong.so it has an error...........

Is This Answer Correct ?    0 Yes 0 No

1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x..

Answer / satya

Ya.. it is correct...
you initialized the x as Int..
we have to to initialize it as int...

Is This Answer Correct ?    0 Yes 0 No

1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x..

Answer / palani222samy

empty

Is This Answer Correct ?    0 Yes 0 No

1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x..

Answer / mallesh

output is nothing bcz loop is not exists

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Explain how are 16- and 32-bit numbers stored?

0 Answers  


what is constant pointer?

3 Answers  


Why do we need a structure?

0 Answers  


What is pointer to pointer in c?

0 Answers  


Is it acceptable to declare/define a variable in a c header?

0 Answers  


What is the use of the sizeof operator?

2 Answers  


List a few unconditional control statement in c.

0 Answers  


Write a program to reverse a given number in c language?

0 Answers  


What is the difference between NULL and NUL?

0 Answers   Aspire, Infogain,


N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3

3 Answers   Honeywell,


An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above

0 Answers  


Is flag a keyword in c?

0 Answers  


Categories