How can I read/write structures from/to data files?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What are the advantages and disadvantages of a heap?
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
what is the code to display color fonts in the output?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
To what value do nonglobal variables default? 1) auto 2) register 3) static
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
Why is malloc used?
What is the maximum length of an identifier?
What is structure padding and packing in c?
What does 1f stand for?
What is the relationship between pointers and data structure?