What are structural members?
No Answer is Posted For this Question
Be the First to Post Answer
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Do you know what is the purpose of 'extern' keyword in a function declaration?
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]
What is Dynamic Initialization.
What is the difference between procedural and functional programming?
What are the 4 types of unions?
write a c program in such a way that if we enter the today date the output should be next day's date.
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June
How can I find the modification date of a file?
Is c# a good language?
ASCII stands for
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }