C Programming and Technical Programming Basics

[1] void pointer(void*)
[2] NULL pointer
[3] integer pointer(int *)
[4] Specific pointer according to the memory
allocated for specific type

Read Solution (Total 10)

C Other Question

What is the output and why?
#include
int main(){
int i=(char)65;
printf("%d %c %f %d",i,i,i,i);
return 0;
}
Which one of the following option best denotes the pair of operators, which are used in finding the BINARY equivalent of an integer number?

[1] ==, >>, &&
[2] ==, >>, &
[3] =, >>, ||
[4] ==, <>, <