Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #16.0K
~4K People Reached
Favorite Forums
Favorite Tags

11 Posted Topics

Member Avatar for ckide
Member Avatar for panqnik
0
126
Member Avatar for butterfingerss
Member Avatar for G.TEJAREDDY
Re: c++

You might want to take a look on my latest post about constructors: http://blog.panqnik.pl/dev/co-variant-and-virtual-constructor-in-c/

Member Avatar for panqnik
0
118
Member Avatar for johnas.delacruz

OpenSSL support large number as well, you might want to take a look on it.

Member Avatar for David W
0
470
Member Avatar for sandeepxd

Are you able to code it yourself? However, what kind of help you are looking for? I highlt doubt, someone will write it for you for free (we are people of good will, but our time isnt limitless).

Member Avatar for panqnik
0
97
Member Avatar for butterfingerss

Write a file in encrypted form, write a program which prompt about password at run, read encrypted file, decrypt it and fill your edit control.

Member Avatar for panqnik
0
303
Member Avatar for butterfingerss

AFAIK, QRadioButton is derived from QAbstracButton, so it should have a signal 'clicked'. Make use of it :) http://qt-project.org/doc/qt-5.0/qtwidgets/qabstractbutton.html#clicked

Member Avatar for panqnik
0
136
Member Avatar for mystycs

Here you go: #include <iostream> #include <queue> struct Person { const char* name; int age; }; int main() { std::queue<Person> pq; pq.push( Person { "John", 20} ); pq.push( Person { "Alice", 10} ); Person popped = pq.front(); std::cout << "I am " << popped.name; return 0; }

Member Avatar for David W
0
896
Member Avatar for thewalrus

Creating objects dyamically (on the free store) is the 'situation', where you must take care of used resource (in this case, memory). You might want to read about 'rule of three' and 'rule of five' :)

Member Avatar for panqnik
0
65
Member Avatar for CHETNA_1

You might also do like this: int foo1() { return 2; } int foo2() { return 2; } bool areEqual() { return foo1() == foo2(); } It's worth to mention sequence points in C++, luckily it was on of my latest post on my blog: http://blog.panqnik.pl/dev/sequence-points-in-c-cpp/

Member Avatar for panqnik
0
161
Member Avatar for aronno.amin
Re: c++

You can achieve anything by hard working. It's just up to you :)

Member Avatar for panqnik
0
176

The End.