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...

#include<stdio.h>
void main()
{
int a=5,b=6,c;
int x=(a<b)+7;
int y=(x==7)*9;
int z=(c=x+y)*2;
printf("%h %h %h",x,y,z);
}
What is the output? Explain it.

Answer Posted / moolshankershukla

erreor generate because condition will not operate directly.
such as.

int x=(a<b)+7;
int y=(x==7)*9;

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is an auto keyword in c?

1146


What does the file stdio.h contain?

1119


How is null defined in c?

1205


What the advantages of using Unions?

1295


What is the difference between NULL and NUL?

1354


code for find determinent of amatrix

2018


how to print the character with maximum occurence and print that number of occurence too in a string given ?

2534


Is c easy to learn?

1036


In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

3172


What are the preprocessor categories?

1117


How can I invoke another program or command and trap its output?

1151


What is the difference between scanf and fscanf?

1345


Are the variables argc and argv are always local to main?

1084


Can you mix old-style and new-style function syntax?

1157


Can you pass an entire structure to functions?

1180