Answer Posted / shiva kumar
void main()
{
int a,b;
printf("Enter two numbers\n");
scanf("%d%d",&a,&b);
b=a+b-(a=b);
printf("%d %d ",a,b);
}
| Is This Answer Correct ? | 28 Yes | 7 No |
Post New Answer View All Answers
What do you mean by scope of a variable in c?
Explain how do you determine a file’s attributes?
What is declaration and definition in c?
Is sizeof a keyword in c?
How can I call a function with an argument list built up at run time?
What are operators in c?
What is the difference between union and anonymous union?
What is the use of pointers in C?
How can a number be converted to a string?
What are the 32 keywords in c?
How will you find a duplicate number in a array without negating the nos ?
What is the use of a ‘ ’ character?
what value is returned to operating system after program execution?
Write a code to generate a series where the next element is the sum of last k terms.
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above