What is a source code for memrise?
The Memrise website content, including program source code, is owned by Memrise Inc. Being proprietary intellectual property, the source code is not available within the public domain and therefore cannot be published here.
What is a block and node in drupal?
A node in block makes it possible to add nodes into block. A number of configurable blocks are generated which you can assign a region. Visibility setting of this block is automatically set to show on only the listed pages.
C program for the power operation?
WARNING: This program will not work for x power y where the resulting value is greater than 32767. Example: 10 power 10 will give you an incorrect value.
#include <stdio.h>
int main()
{
int num, power,i,ans;
printf("Enter number and power\t");
scanf("%d%d",&num,&power);
ans=num;
for(i=1;i<power;i++)
ans=ans*num;
printf("%d to the power %d = %d",num,power,ans);
return 0;
}
Difference between goto and continue statement in c language?
In continue statement,
we immediately continue next step through loop
In go to statement,
we go to in perfect label which we call.
A program prints vertically a numbers in c program?
It is too easy................
//Program to print numbers vertically
#include<stdio.h>
#include<conio.h>
void main()
{
int last_no;
int i;
clrscr();
i=0;
printf("Enter your last num.I will print 0 to that number");
scanf("%d",&last_no);
printf("\n");
while(i>last_no)
{
printf("%d\n",i);
i++;
}
getch();
}
//poo.papule
When was the Remington 32 short long RF made?
I can't give an exact date but the 22rf was (re) patent in 1859 and guns started appearing for it in 1860. Of course while very convenient everyone wanted larger calibers so they started immediately increasing the size and firearms for the 32 rf were available by around 1863. The rf design doesn't work well for larger calibers for several reasons due to the ignition of the powder and probably more significantly in order for the case to handle the pressures it would have to be thicker and of course the rf is fired by smashing that case rim and it would take stronger hammers/springs to do so. This is why the percussion handgun became the main stay for larger handguns until the development of the centerfire cartridge.
What are the advantages of hard disk drive?
1. Hard disk space is relatively cheap, as low as 13p per GB
2. Hard disks store data without the need for a constant electricity supply
3. Hard disks allow data to be stored in one place which is more convenient than using DVDs for example.
4 Hard drives have a read/write speed in comparison to optical media (cds) although very low in comparison to RAM
C is a programming language, so it doesn't have source code.
(On the other hand, C compilers do have source code, but you, as a beginner in programming, could not understand them.)
When do we use an address operator in c'?
In C we use & operator while giving address of some variable to some pointer variable. & operator is also used in scanf().
How do you point to the first node in a linked list?
The list itself should maintain a pointer to the first node in the list. If it is NULL, the list is empty.
In computer programming, inheritance means to derive a new object from an existing object, such that the new object inherits all the properties of the existing object. In object oriented programming, derived classes inherit the public and protected members of their base classes. This allows new classes to be created from existing classes, without the need to duplicate large chunks of code in the existing class. The new class can augment the inherited code to provide more specific behaviour.
A given source statement may be converted to any number of machine-level instructions with what?
Compiler
How can the pointer speed up program execution?
It is not that simple. Obviously, sub-optimal programs can be optimized, which may or may not include using pointers, but it requires a skilled programmer.
Write a program in c plus plus to implement macro processor?
Don't write, it is already written, google for 'cpp'.
What is the difference between declaration and initialization?
Perhaps an example will help.
extern int value; /* declaration */
int value; /* definition */
int value= 20; /* definition with initialization */
Why keyword cannot be used as an identifier in c language?
It's by design; this way the lexical parser is able to decide that any given string is a keyword or an identifier.
How do you find the no of characters and numerics in the given string?
First of all numbers are not meant to be stored in a string and if u do so in C, these numbers will be treated as characters and you can not perform any calculation on these numbers, and to find the number of characters in a string use the strlen() from the string.h file.
No. Computers do not convert program source code into machine code, period. That job is the responsibility of another piece of software, known as the interpreter or compiler, a machine code program which effectively tells the computer how to perform the translation from source code to machine code. The computer cannot do this job by itself as computers only understand machine code and nothing else.
An interpreter simply converts each statement of source code into the equivalent machine code and executes it, one statement at a time. This is extremely slow because subroutines that are called many times must be translated each time they are called, for instance. Thus the source code must always be executed within the interpreter software.
A compiler, on the other hand, converts the entire source program into object code which can then be linked to produce the required machine code. Once linked, the machine code will execute without any further interpretation, and is therefore known as a standalone executable.