How can I write a function analogous to scanf?


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

Post New Answer

More C Interview Questions

When a c file is executed there are many files that are automatically opened what are they files?

0 Answers  


Write a program to find the given number is odd or even without using any loops(if,for,do,while)

4 Answers   CNC, Gokul,


main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }

4 Answers   CitiGroup,


Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10

8 Answers   Aspire,


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  






What is C language Terminator?

15 Answers   TCS,


code snippet for creating a pyramids triangle ex 1 2 2 3 3 3

4 Answers  


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

0 Answers  


What is the mean of function?

0 Answers  


what are the different storage classes in c?

0 Answers   TCS,


Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321

7 Answers   HCL,


What type of function is main ()?

0 Answers  


Categories