2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / hari
x=2
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of type declarations?
What is difference between main and void main?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
how to write a c program to print list of fruits in alpabetical order?
What does typeof return in c?
What is a void * in c?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What are the advantages of the functions?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
How do you do dynamic memory allocation in C applications?
What is oops c?
Is main is user defined function?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Explain about the constants which help in debugging?
Write a program to implement queue.