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
c program to manipulate x=1!+2!+3!+...+n! using recursion
What are Macros? What are its advantages and disadvantages?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
What is meant by high-order and low-order bytes?
Explain the term printf() and scanf() used in c language?
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
What will be your course of action for a push operation?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
What is external and internal variables What is dynamic memory allocation what is storage classes in C
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Is anything faster than c?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?