2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / manoj kumar
36
| Is This Answer Correct ? | 73 Yes | 16 No |
Post New Answer View All Answers
Do pointers store the address of value or the actual value of a variable?
What is s or c?
What does c mean?
write a program to print largest number of each row of a 2D array
What are the scope of static variables?
How can I remove the trailing spaces from a string?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
How main function is called in c?
What are the features of c language?
What are the features of c languages?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
write a progrmm in c language take user interface generate table using for loop?
What is this pointer in c plus plus?
What is dynamic variable in c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above