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 does char * * argv mean in c?
What is meant by operator precedence?
What are the three constants used in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
what are bit fields? What is the use of bit fields in a structure declaration?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What are data types in c language?
What is a memory leak? How to avoid it?
What is bin sh c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Write a program to print fibonacci series without using recursion?
By using C language input a date into it and if it is right?
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 does do in c?
Tell me what is the purpose of 'register' keyword in c language?