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
What is the right way to use errno?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
What is the difference between break and continue?
What are the different types of endless loops?
Write a C program to count the number of email on text
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Write a program in c to replace any vowel in a string with z?
What is a keyword?
What is difference between && and & in c?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What is the data segment that is followed by c?
What is a 'null pointer assignment' error?
Difference between linking and loading?
Can a local variable be volatile in c?