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;
}
what is the similarities between. system call and library function?
How to add two numbers without using semicolon n c????
Is c compiled or interpreted?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
Write a C function to search a number in the given list of numbers. donot use printf and scanf
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
What is the usage of the pointer in c?
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
What is #include stdio h and #include conio h?
What is the full form of getch?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What is identifier in c?