blah blah blah is here! blah blah » Close

0
votes
1 answers

function to write text to a file on desktop

hi, i am using the below code to write text to file file created on desktop . do { Console.Write("enter the item:"); Description = Console.ReadLine(); ...

0
votes
1 answers

strange function in C++

Hello everyone! I'm trying to understand the following code: [code]class char_queue { protected: struct charNode { public: char val; charNode* next; charNode(char ch, charList* ptr) { ...

1
votes
1 answers

Probe function

Hi guys, I've got following task to do: [code]Create a table that consists of 10 places. Insert the following table entries A1, I9, R18, S19, E5, O15, and Y25, where the integers are subscripts which represent the positions of these let ...

1
votes
1 answers

using aggregate function with join query

i'm trying to get the summerized date from join query using aggregate function count() and left join [code] select Catagories.FieldId,Catagories.BookField, BookTitles.FieldId as"btitle" from Catagories left join BookTitle ...

Feedback