Explain what is a static function?
No Answer is Posted For this Question
Be the First to Post Answer
Why is it usually a bad idea to use gets()? Suggest a workaround.
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]
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What is the use of extern in c?
Explain what header files do I need in order to define the standard library functions I use?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
Explain pointer. What are function pointers in C?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
why do we use pointer instead directly acessing the data?
what is function pointer?
What do you mean by dynamic memory allocation in c?