2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / pallavi
pgm is wrong coz, main ws supposed to hav () and } is
missing at the end
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
Do string constants represent numerical values?
Distinguish between actual and formal arguments.
Why isnt there a numbered, multi-level break statement to break out
Do pointers need to be initialized?
Is there any possibility to create customized header file with c programming language?
Differentiate between null and void pointers.
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is variable declaration and definition in c?
Do you know the use of 'auto' keyword?
develop algorithms to add polynomials (i) in one variable
How many main () function we can have in a project?
Why do we use return in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is the difference between array and linked list in c?
What should malloc() do?