Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Differentiate between #include<...> and #include '...'

0 Answers  


Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered

1 Answers  


Between macros and functions,which is better to use and why?

0 Answers  


Do you know what is a programing language ?

0 Answers  


what is constant pointer?

3 Answers  


What is the difference between ++a and a++?

0 Answers  


Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….

1 Answers  


Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.

0 Answers  


What are header files? What are their uses?

0 Answers  


How can I change the size of the dynamically allocated array?

0 Answers  


What do header files do?

0 Answers  


what does keyword ‘extern’ mean in a function declaration?

1 Answers   Emerson,


Categories