Write a program to swap two numbers without using third variable?
No Answer is Posted For this Question
Be the First to Post Answer
what is bit rate & baud rate? plz give wave forms
How to access or modify the const variable in c ?
16 Answers HCL, HP,
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
what are the advantages & disadvantages of unions?
c program to input values in a table(using 2D array) and print odd numbers from them
What is the general form of a C program?
What are the ways to a null pointer can use in c programming language?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
what is the role you expect in software industry?
explain what is an endless loop?
What is indirect recursion? give an example?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.