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 the scope of an external variable in c?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
What are reserved words with a programming language?
What is indirect recursion? give an example?
How can I prevent another program from modifying part of a file that I am modifying?
Write a program for Overriding.
Is c programming hard?
What are the application of c?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
What is the maximum length of an identifier?
what is the different between data structure and data type?