where does malloc() function get the memory?
What do you mean by c?
State the difference between x3 and x[3].
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What is uint8 in c?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
Difference Between embedded software and soft ware?
write a C code To reverse a linked list
What is the correct code to have following output in c using nested for loop?
Why can arithmetic operations not be performed on void pointers?