2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);

Answer Posted / guest

x=1

Is This Answer Correct ?    18 Yes 20 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the value of a[3] if integer a[] = {5,4,3,2,1}?

656


Can you define which header file to include at compile time?

573


What are compound statements?

616


Why main is used in c?

575


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

658






How variables are declared in c?

557


How does struct work in c?

600


What does %d do?

704


a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above

670


What is the sizeof () a pointer?

540


Why is structure important for a child?

593


How a string is stored in c?

573


illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question

1572


What's the right way to use errno?

611


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

1832