What is the difference between text and binary modes?
No Answer is Posted For this Question
Be the First to Post Answer
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
What are different types of operators?
WHOT IS CHAR?
how to find out the reverse number of a digit if it is input through the keyboard?
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
Program to find larger of the two numbers without using if-else,while,for,switch
Tell me is null always defined as 0(zero)?
What are the types of pointers?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
What is a const pointer, and how does it differ from a pointer to a const?
What are runtime error?