Explain what are bus errors, memory faults, and core dumps?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
In C language, a variable name cannot contain?
Can static variables be declared in a header file?
What is a pointer variable in c language?
Process by which one bit pattern in to another by bit wise operation is?
progrem to generate the following series 1 12 123 1234 12345
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
How can I read a binary data file properly?
What does == mean in texting?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is Heap?
write a program to arrange the contents of a 1D array in ascending order