what is the different bitween abap and abap-hr?
No Answer is Posted For this Question
Be the First to Post Answer
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
What is a structure in c language. how to initialise a structure in c?
What is adt in c programming?
write a program of palindrome(madam=madam) using pointer?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
What is a symbolic constant?
How does the C program handle segmentation faults?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
Explain 'bit masking'?