C Programming and Technical Programming Program

write a C program two swap two numbers without using temporary variable??

Read Solution (Total 12)

C Other Question

#include
void main()
{
int a;
char *x;
x=(char *)&a;
a=512;
x[0]=1;
x[1]=2;
printf("%dn",a);
getch()
;
void main()
{
int x=0,y=0;
if(x++&&++y)
{x++ }
cout<