Answer Posted / hardeep singh
this question is wrong. array name should be in small
letter.because c and c++ are case senstive.
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
Why is c still so popular?
What is binary tree in c?
Is c is a middle level language?
How can you be sure that a program follows the ANSI C standard?
What do you mean by dynamic memory allocation in c? What functions are used?
Why is void main used?
What are keywords in c with examples?
How can I swap two values without using a temporary?
Explain how do you list files in a directory?
What is extern variable in c with example?
What are run-time errors?
write a program to print data of 5 five students with structures?
Explain high-order bytes.
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How can I change their mode to binary?