The difference between printf and fprintf is ?


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

Post New Answer

More C Interview Questions

Write a C program that reads a series of strings and prints only those ending in "ed"

2 Answers   Accenture,


How many types of operators are there in c?

0 Answers  


what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }

6 Answers   Microsoft,


Explain the concept and use of type void.

0 Answers  


Can i use “int” data type to store the value 32768? Why?

0 Answers  






How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?

2 Answers   CMC, Wipro,


Write a program to use switch statement.

0 Answers   Agilent, Integreon, ZS Associates,


difference between semaphores and mutex?

1 Answers  


Do array subscripts always start with zero?

0 Answers  


what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....

1 Answers   TCS,


#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  


Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?

4 Answers   Oracle,


Categories