What is pragma c?
No Answer is Posted For this Question
Be the First to Post Answer
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 difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
int x=sizeof(!5.856); What will value of variable x?
wap in c to accept n number display the highest and lowest value
swap 2 numbers without using third variable?
How many identifiers are there in c?
Can the sizeof operator be used to tell the size of an array passed to a function?
What is the scope of global variable in c?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
What is null in c?
Where static variables are stored in c?