FORMATTED INPUT/OUTPUT functions are
a) scanf() and printf()
b) gets() and puts()
c) getchar() and putchar()
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of below int n=10; (n++)++; printf("%d",n);
Can two or more operators such as and be combined in a single line of program code?
Explain what is the difference between the expression '++a' and 'a++'?
Q. where is the below variables stored ? - volatile, static, register
Is a pointer a kind of array?
What is a pointer?
Is sizeof a keyword in c?
how can i get output like this? 1 2 3 4 5 6
What is the difference between array_name and &array_name?
int i=10; printf("%d %d %d", i, i=20, i);
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....
Is array name a pointer?