console I/O functions means
a) the I/O operations done on disk
b) the I/O operations done in all parts
c) the input given through keyboard is displayed VDU screen
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
how to write a program which adds two numbers without using semicolon in c
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Write a small C program to determine whether a machine's type is little-endian or big-endian.
about c language
What is meant by int fun const(int a, int b) { .... ... }
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
Can we use any name in place of argv and argc as command line arguments?
program to find the roots of a quardratic equation
Explain Function Pointer?