What is meant by gets in c?
No Answer is Posted For this Question
Be the First to Post Answer
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
What is the most efficient way to count the number of bits which are set in an integer?
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
Can a void pointer point to a function?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
Explain the difference between null pointer and void pointer.
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
write a program to find the largest and second largest integer from an array
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
How are Structure passing and returning implemented by the complier?
how can I convert a string to a number?