How to determine byte offset of a field within structure in C?
How to return an array as the output parameter of a function?
How to write device driver in C?
write a program in c to show matrix multiplicaton
How are interrupts executed in C? Where are interrupts stored in the memory? What actually occurs when interrupts are encountered?
How to find the address of a variable which is declared as long double?
Latest Answer: You can use the sizeof() operator to get the size of a variable declared as long double. try the following code:#include#includemain(){ long double a; clrscr(); printf("%d", ...
How to find the ASCII value of an element ?
Latest Answer: try this code:#include#includemain(){ char a; clrscr(); puts("Enter a character:"); a=getchar(); printf("nnThe ascii ...
What is the difference between short int and int?
Latest Answer: int has 16bits that is 2 bytes but short int has 8 bits that is 1 byte ...
What are all the type of Exceptions available in C ?
What is garbage value and How it is stored?
Latest Answer: Garbage value is a value which is not useful to your program. Normally when you create a variable and don't initialize it, it has a garbage value which is left behind by another program at that memory address. ...
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top