FORMATTED INPUT/OUTPUT functions are

a) scanf() and printf()

b) gets() and puts()

c) getchar() and putchar()

d) all the above


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is the output of below int n=10; (n++)++; printf("%d",n);

3 Answers  


Can two or more operators such as and be combined in a single line of program code?

0 Answers  


Explain what is the difference between the expression '++a' and 'a++'?

0 Answers  


Q. where is the below variables stored ? - volatile, static, register

3 Answers   Bosch,


Is a pointer a kind of array?

0 Answers  






What is a pointer?

1 Answers   ADP, IFFCO,


Is sizeof a keyword in c?

0 Answers  


how can i get output like this? 1 2 3 4 5 6

6 Answers   Excel,


What is the difference between array_name and &array_name?

0 Answers  


int i=10; printf("%d %d %d", i, i=20, i);

0 Answers  


I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....

2 Answers  


Is array name a pointer?

0 Answers  


Categories