Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

3 Technical Degrees that Will Improve IT Development Processes

If you are thinking of getting a degree that will help you learn the technical process in Information Technology, then there are many different types of degree that you can consider. There are so many different courses nowadays that it is difficult f

main.c:18:8: error: called object ‘sum’ is not a function or function pointer

Please help me to solve the error main.c:18:8: error: called object ‘sum’ is not a function or function pointer, below is the code: #include<stdio.h> int sum(int*a,int*b) {     int s=0;     s=*a=*b;     return s ; } int mai

Converting code from C to PHP

Hi! I have a question about a small piece of code in C to make the same piece of code work in PHP, it has to do with a bit shift and I can't figure out what's wrong. C: unsigned u = 3910796769; u += u << 8; printf("%u\n",u);&

Dynamic memory allocation in C

Dynamic memory allocation is a manual memory management for the dynamic memory with use of some group of functions in like malloc, realloc, calloc and free. The process of allocating memory during the execution of a C program is called a Dynamic mem

How to Deserialize XML using C#

"How to Deserialize XML document in C#"     In this article I have discussed about how to deserialize the XML using C#. Let us take a simple example to understand better: <AddressDetails> <HouseNo>4</HouseNo>

How to get current date with start time and end time?

Sometimes we need to get current date but we need to get time with date that starts from 12 O'clock morning and sometimes ends with 12 O'clock night. To achieve this use the below code: 1- Write the below code to set time fields to start /** * S

Friend Class in C++

Friend class in C++ Friend class Protected and private members of a class cannot be accessed from outside the class in which they are declared. A friend class can access these members of another class in which it is declared as friend.Friend declar

Sample Query to fetch matched record from BO

Using the below query you can retrieve the records from the BO in which you execute the Match Job(manual merge) and to determine which records matched with other. select distinct(finalquery.src_rowid), finalquery.party_nm, finalquery.PARTY_ID from

Memset in C

Memset is used to fill first n bytes in the block of memory pointed by a pointer to a specific character interpreted as an unsigned char. Memset is defined under string.h header. Function Prototype void * memset ( void * ptr, int value, size_t num

Difference between yield and return statement in C#.

return statement in C# Example to demonstrate return statement: static int SimpleReturn() { return 1; return 2; return 3; } static void Main(string[] args) { Console.WriteLine(SimpleReturn()); Console.WriteLine(SimpleRetu

1 21 319
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: