How can I determine whether a machines byte order is big-endian or little-endian?
No Answer is Posted For this Question
Be the First to Post Answer
what is foreign key in c language?
Give differences between - new and malloc() , delete and free() ?
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
What is else if ladder?
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
What is C language ?
When a c file is executed there are many files that are automatically opened what are they files?
What will be your course of action for a push operation?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Is it acceptable to declare/define a variable in a c header?
What is optimization in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }