answersLogoWhite

0

I think 2.

A Dog at first and then

A Monkey / Chimp

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How can we create an unsized array to c programme?

Use a pointer... int a*; a = malloc(sizeof(int)*100); //allocate space for 100 elements free(a); a = malloc(sizeof(int)*1000); // allocate space for 1000 elements free(a);


Which one of the following statements allocates enough space to hold an array of 10 integers that are initialized to 0?

int *ptr = (int *) calloc(10,sizeof(int));


C program that create a pyramid?

here is the solution of ur answer.. :) # include<iostream.h> # include <conio.h> main() { int space=10; \\ to print the pyramid in center, you can also increase the # of spaces for (int i=0;i<=5;i++) { for (int k=0;k<space;k++) { cout<<" "; } for (int j=0;j<2*i-1;j++) { cout<<"*"; } space--; cout<<endl; } getch(); }


Will the undertaker do the motorcycle again?

i doubt it coz he has gone evil and is interested in death int he so there for no


May 5th is the anniversary of Alan Shepard being the first American in space How many years ago did this happen?

first astronaut to go int space 1961 so this was 54 years ago when this happened


How is the 'sizeof' keyword in a c program used to determine the amount of space of a variable?

It is 'sizeof'. Example: printf ("sizeof(int)=%d\n", sizeof (int));


What is the ASCII value of white space in c language?

int main (void) { printf ("space is %d\n", ' '); return 0; }


How many pentominoes in a 29 by 13 rectangle?

Int(29*13/5) = int(377/5) = int(75.4) = 75


How many bits are in a int?

32


30 examples of variables?

int n1; int n2; int n3; int n4; int n5; int n6; int n7; int n8; int n9; int n10; int n11; int n12; int n13; int n14; int n15; int n16; int n17; int n18; int n19; int n20; int n21; int n22; int n23; int n24; int n25; int n26; int n27; int n28; int n29; int n30;


Where does the gas from the space ships in outer space go?

i think it goes int oorbit of what ever planit it comes closest to then becames part of that planet


How many multiples of 9 are there between 7 and 7000?

There are int(7000/9) = int(777.77...) = 777 of them.