What is the difference between scanf and fscanf?


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

Post New Answer

More C Interview Questions

What is the value of c?

0 Answers  


write a c program to check weather a particluar bit is set or not?

5 Answers   IBM,


#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }

3 Answers   SRG,


What is function what are the types of function?

0 Answers  


write a program to compare 2 numbers without using logical operators?

5 Answers   IBM,






what is a function prototype?

1 Answers  


write a program without using main function?

2 Answers   TCS,


print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar

4 Answers   IBM,


Why do we use int main?

0 Answers  


main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }

22 Answers   NDS, TCS,


What is a static function in c?

0 Answers  


what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel

1 Answers   V2 Solutions,


Categories