Tell me about low level programming languages.
No Answer is Posted For this Question
Be the First to Post Answer
What's the total generic pointer type?
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
Explain what math functions are available for integers? For floating point?
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
Can a file other than a .h file be included with #include?
how can i print "hello"
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
4. main() { int c=- -2; printf("c=%d",c); }
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
difference between my-strcpy and strcpy ?
3 Answers Geometric Software, IIM, Infosys,
what is a function prototype?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.