Latest Answer: Compile is a process that converts your source code into object code.(creation of .exe file)Run time means the execution file(.exe) is loaded on memory and execute it. ...
Latest Answer: They give property to the identifiers. The two qualifiers are " const " and " volatile " syntax: ;example: const int value; ...
Latest Answer: Volatile Tells the compiler that the value of the variable can be inadvertently changed by something beyond the scope of the program. So each time the variable is used, its value is loaded from the memory. example: The value of variable which is shared ...
Latest Answer: Because array index shows distance from the 1st element. Since the first element is zero distance away from itself, index starts from zero. The next element will be "index*scaling factor" distance away from 1st element. In case of integer array next elements ...
Latest Answer: The header files are used for various function used your C program like printf,scanf and various preprocessor activities during compilation. ...
Latest Answer: Converts an integer value to a null-terminated string using the specified base.If base is 10 and value is negative, the resulting string is preceded with a minus sign (-). With any other base, value is always considered unsigned. ...
Latest Answer: This is an example of inheritance ....struct parent { int x; int y;};struct child { parent p1; int a; int b;};int main(){ struct child c1; c1.p1.x=50; printf("%dn",c1.p1.x); return 0;} ...
Latest Answer: most of the times you need to zero out the mem by using bzero or memset.U need not do it that way here.And also if it is to be alocated for a string,strlen(allocated array) is automatically 0.Which is a much safer method. ...
To take a string from the User & then arrange the characters in that string in ascending order like if user enters "babcac" the program should print it as "aabbcc"
Latest Answer: The C preprocessor implements the macro language used to transform C, C++, and Objective-C programs before they are compiled.Preprocessing is the first stage of program compillation where all MACROS are replaced in the source code.All the directives or ...
View page << Previous 8 9 10 11 [12] 13 14 15 16 17 Next >>

Go Top