2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / e.manjuladevi
x=2
| Is This Answer Correct ? | 13 Yes | 9 No |
Post New Answer View All Answers
What are the preprocessor categories?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Describe explain how arrays can be passed to a user defined function
What is #ifdef ? What is its application?
Is it possible to have a function as a parameter in another function?
Give the rules for variable declaration?
Do you know what are bitwise shift operators in c programming?
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?
Write the syntax and purpose of a switch statement in C.
C language questions for civil engineering
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Does c have function or method?
What are the different types of data structures in c?
What is a file descriptor in c?