a program that can input number of records and can view it
again the record
No Answer is Posted For this Question
Be the First to Post Answer
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is s in c?
Program to trim a given character from a string.
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
multiple of 9 without useing +,* oprator
What is the difference between CV and Resume ?
what is meant by flushll() in c programming?
Differentiate between Macro and ordinary definition.
Write a program to exchange two variaables without temp
The variables are int sum=10,SuM=20; these are same or different?
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....