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 / bala prasad
it prints
512
| Is This Answer Correct ? | 17 Yes | 10 No |
Post New Answer View All Answers
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What are the general description for loop statement and available loop types in c?
Explain what is meant by 'bit masking'?
Why is c known as a mother language?
Compare interpreters and compilers.
What are the functions to open and close file in c language?
What are compound statements?
What is the difference between a string and an array?
Explain how can you determine the size of an allocated portion of memory?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What are the ways to a null pointer can use in c programming language?
Why is sizeof () an operator and not a function?
Explain the ternary tree?
which type of aspect you want from the student.
What is typedef?