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

what will be the output of this program?

#include<stdio.h>
#define cube(x) x*x*x

void main()
{
int i,j=5;
i=cube(j+3);
printf("i=%d",i);
}

Answer Posted / srikanth karnati

please explain this program.

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what are linked list?

989


What would be an example of a structure analogous to structure c?

944


Explain what math functions are available for integers? For floating point?

1062


Are the expressions * ptr ++ and ++ * ptr same?

1088


main() { printf("hello"); fork(); }

1148


What is the difference between far and near ?

1156


Compare interpreters and compilers.

1027


What is the code in while loop that returns the output of given code?

1896


What is auto keyword in c?

1160


4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.

2137


What is a node in c?

919


How can you call a function, given its name as a string?

1099


Explain Function Pointer?

1103


Explain how can I manipulate strings of multibyte characters?

1158


When should I declare a function?

1055