In which language linux is written?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
How many header files are in c?
What is array within structure?
What is operator precedence?
what is an array
What is this infamous null pointer, anyway?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
Why does not c have an exponentiation operator?
How to removing white spces in c programming only bu using loops