what does ‘segmentation violation’ mean?
What are the c keywords?
what is computer engg
Explain what is dynamic data structure?
Can you think of a logic behind the game minesweeper.
C,c++, Java is all are structural oriented or procedure oriented language..?
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
Can we assign string to char pointer?
What is the diffences between Windows XP and Windows Visa
What are structures and unions? State differencves between them.
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
hi , please send me NIC written test papers to sbabavalli@gmail.com
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }