How can I list all of the predefined identifiers?
No Answer is Posted For this Question
Be the First to Post Answer
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
Explain what is page thrashing?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
What do you mean by a sequential access file?
What are the disadvantages of external storage class?
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
How can you pass an array to a function by value?
Explain what is a static function?
write an algorithm and c program to add two 2x2 matrics