Answer Posted / wazid hussain
conio.h stands for consol input output . header file that reads input from input device and send output to the monitor....
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Can a variable be both static and volatile in c?
Is main is user defined function?
What are types of preprocessor in c?
What is function definition in c?
Is there any demerits of using pointer?
How can I read a binary data file properly?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Explain do array subscripts always start with zero?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What are the disadvantages of external storage class?
Write a c program to demonstrate character and string constants?
What is class and object in c?
How can I get the current date or time of day in a c program?