What is main void in c?
what is the structure pointer?
What does a function declared as pascal do differently?
What does emoji p mean?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
what is level of tree if leaf node is at level 4.please explain.
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
What is difference between array and structure in c?
How can I access memory located at a certain address?
Tell me with an example the self-referential structure?
What is a file descriptor in c?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
Identify the operators that is not used with pointer a. && b. # c. * d. >>