Explain what is gets() function?


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

Post New Answer

More C Interview Questions

Write code for initializing one dimentional and two dimentional array in a C Program?

5 Answers   Deshaw, Edutech, GMD,


what is the format specifier for printing a pointer value?

0 Answers  


Why c is called top down?

0 Answers  


write a program to generate 1st n fibonacci prime number

2 Answers  


Which built-in library function can be used to match a patter from the string?

0 Answers  






what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  


How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)

1 Answers   iLantus, Subex,


main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }

4 Answers   Vector, Vector India,


What are data structures in c and how to use them?

0 Answers  


What are the different file extensions involved when programming in C?

0 Answers  


What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none

2 Answers   Oracle,


Are there namespaces in c?

0 Answers  


Categories