answersLogoWhite

0

abdulrahman

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How can you do the same thing as the program below but using strings and arrays in C language?

Program below?!


Write a program using iostreams to take as input two multi-dimensional arrays and print their sum as output Matrix Addition in Matrix format?

http://www.assignmentsclub.com/


Would you Write c plus plus program using array for Fibonacci number?

You can write a C++ fib pro using arrays but the problem is the prog becomes very complicated since u need to pass the next adding value in an array.....


Write a sample program using ASPNET explaining all the syntax and semantics of the program?

write a sample program using asp.net explaining all the syntax and semantics of the program


Are arrays in C created on the stack or the heap?

That depends on where you define them. Arrays defined inside functions are declared on the stack (like other variables defined in functions). Arrays defined outside of any function, or using the static keyword inside a function are allocated in the static data area of the program. Other arrays may be allocated using malloc() (or "new" in C++); these are allocated on the heap.


How do you write Square program using vb?

write a vb program to find the magic square


Write a flowchart to find the sum of maximum and minimum o N natural numbers without using arrays?

huh?


Write Client and server program in C language using UDP?

Write and run a client and a server program in C-language using UDP


How do you write a C program to reverse the 3 digits of a number using while loop?

unsigned reverse (unsigned num) { unsigned rev = 0; while (num) { rev *= 10; rev += num % 10; num /= 10; } return rev; }


How do you print my name in c program in vertical manner using arrays?

you need strings to print any character(your name) this is not possible useing array:D


How do you write a c program to convert binary to decimal by using while statement?

write a c++ program to convert binary number to decimal number by using while statement


Write a Program for reverse of number using pointer?

void main(){int *n,a,r=0;clrscr();printf("enter any no to get its reverse: ");scanf("%d",&*n);while(*n>=1){a=*n%10;r=r*10+a;*n=*n/10;}printf("reverse=%d",r);getch();}Output:enter any no to get its reverse: 456reverse=654