2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / kumaran
36
| Is This Answer Correct ? | 22 Yes | 9 No |
Post New Answer View All Answers
Explain what is the benefit of using const for declaring constants?
What is the scope of global variable in c?
Explain what is the difference between a string and an array?
What are the back slash character constants or escape sequence charactersavailable in c?
What are dangling pointers in c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What is the significance of scope resolution operator?
What does 2n 4c mean?
How are variables declared in c?
What is the heap in c?
What is double pointer in c?
How do you initialize pointer variables?
write a program to find out prime number using sieve case?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What do you mean by a local block?