What is hash table in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
What does the message "warning: macro replacement within a string literal" mean?
application of static variables in real time
What is the purpose of realloc()?
what is difference between procedural language and functional language ?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
What is the use of volatile?
What is a far pointer in c?
char *p="name"; printf(p);
Write a c program to demonstrate Type casting in c?