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
How is a null pointer different from a dangling pointer?
Simplify the program segment if X = B then C ← true else C ← false
how to introdu5ce my self in serco
What is typedef?
What is the difference between char array and char pointer?
What is the use of linkage in c language?
Is it better to bitshift a value than to multiply by 2?
Explain c preprocessor?
What is the difference between mpi and openmp?
Explain which function in c can be used to append a string to another string?
What is difference between class and structure?
What is 1f in c?
What is the symbol indicated the c-preprocessor?
How can this be legal c?
What are types of functions?