what is the purpose of the following code, and is there any
problem with the code?
void fn(long* p1, long* p2)
{ register int x = *p1;
register int y = *p2;
x ^= y;
y ^= x;
x ^= y;
*p1 = x;
*p2 = y;
}
Write a Program to find whether the given number or string is palindrome.
mplementation of stack using any programing language
What are header files? What are their uses?
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
What is the difference between a function and a method in c?
How would you rename a function in C?
Explain what is a pragma?
what are enumerations in C
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
SRUCTURE PROGRAMMING
is it possible to create your own header files?
Why isn't it being handled properly?