What is meant by gets in c?


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

Post New Answer

More C Interview Questions

regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression

1 Answers   TCS,


What is sizeof int?

0 Answers  


What is include directive in c?

0 Answers  


where do we use structure pointer?

1 Answers  


Is main() function predfined or userdefined?

11 Answers  






If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?

6 Answers   Hughes,


What does 1f stand for?

0 Answers  


What is the purpose of 'register' keyword in c language?

0 Answers  


Can you add pointers together? Why would you?

0 Answers  


5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

2 Answers   Accenture,


Explain what are the different file extensions involved when programming in c?

0 Answers  


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

0 Answers  


Categories