Tag: programming languages
Questions Related to programming languages
UML stands for
This operator returns the size in bytes of that data type or object or structure etc
Encapsulation is the process of basing one class on another.
#include main() { char a[4]="HELLO"; printf("%s",a); }
#include main() { int a[2][2][2] = {{10,2,3,4},{5,6,7,8}}; int p,*q; p=&a[2][2][2]; *q=**a printf("%d----%d",*p,*q); }
#include main (){ unsigned int a = 0xf0ad; char *c = (char *) &a; printf("value @c: %x",*c); }