How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
No Answer is Posted For this Question
Be the First to Post Answer
What is a dynamic array in c?
List some of the dynamic data structures in C?
write a program to print %d ?
When should structures be passed by values or by references?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
What is the meaning of 2d in c?
What is declaration and definition in c?
what is uses of .net
What is the difference between functions abs() and fabs()?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......