Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
80% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~22.5K People Reached
Favorite Tags
Member Avatar for vivekgalatage

Hi Guys, I m writing one HTML page where i wanted the page orientation to be set to LANDSCAPE through Javascript or CSS. So when I click on Print button or anyways on the HTML page, the print window will pop-up so now in that orientation property should be set …

Member Avatar for Sara_14
0
22K
Member Avatar for vivekgalatage

Hello, Is there any tool which will detect the unused methods of a class in a C++ project? So by using this tool I can reduce my build size by eliminating the un used methods.

Member Avatar for Chainsaw
1
149
Member Avatar for vivekgalatage

Hi i want to convert my C project to C++. so does anyone knows any tool that converts a C program to C++

Member Avatar for Chainsaw
1
193
Member Avatar for vivekgalatage

#include <stdio.h> #include <stdlib.h> class A { int a; public: A() { a=100; } int get() { return a; } }; int main() { A *a=new A(); int *p=(int *)a; printf("%d\n",a->get()); *p=200; printf("%d\n",a->get()); system("pause"); } its out put is - 100 200 so can any body help me to avoid …

Member Avatar for Chainsaw
0
153
Member Avatar for vivekgalatage

Hello Everyone can anyone please explain me about the concept of namespaces? Regards

Member Avatar for TITAN
0
194
Member Avatar for vivekgalatage

Hi everyone, can anybody know how to forward a RAW packet i.e. the buffer containing the ethernet header upto the TCP/UDP data using the send() and socket() system calls in C or C++ Regards, Vivek

0
99