answersLogoWhite

0

After WWII

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How is typedef different from int in c language?

They are entirely different things; int is a type, typedef is a way to define types.


What two countries border china int he north side?

Russia and Mongolia


What are the 4 biggest countries int he world but not CHINA?

Russia, Canada, China, USA


For exterior use you have 5gals ext and 2.5gals int can you mix?

int and ext paints should never be mixed. ext paints contains different elements in them then int paints.


What are the different types of integer constants in c language?

Well, uh, const unsigned int and const signed int..


What is polymorphism in programming?

Polymorphism is the method in which a java program can have more than one function(or method) with the same name but different method signatures(different parameters or return type). possible allowance: void s() void s(int a) void s(int a,int b) void s(float a) int s()


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;


How many constructors can c have?

A class can have any number of constructors, as far as they are having different parameters or different number of parameters. For example, a class A can have following constructors & even more: A() -the default constructor A(A objectA) -the copy constructor A(int p) A(int p1, int p2) A(int[] p1, float p2) A(double p1, double p2, int p3) A(A objA, int[] p) A(B objB)


What are the different turbo-c programs?

There are quite a lot of different C-programs, eg: int main (void) { puts ("One of them"); return 0; } int main (void) { puts ("Another"); return 0; }


Mention different types available in C?

Char, int, float and double.


What is the different type of data type in c classified it?

float,int,char


Why only three types of pointer variable in c language?

I have no idea what you mean by that... Some examples for pointers of different types: int *intptr; char *charptr; void *generic_ptr; FILE *stdin; int (*funptr)(int, char **);