Answer Posted / manish sharma
Array is a collection of similar data type,
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can a program be made to print the line number where an error occurs?
Can we access array using pointer in c language?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
Did c have any year 2000 problems?
What is a MAC Address?
Is c is a low level language?
using for loop sum 2 number of any 4 digit number in c language
What is pre-emptive data structure and explain it with example?
#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); }
What is quick sort in c?
what is the height of tree if leaf node is at level 3. please explain
What is break in c?
What is the use of header files?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Why double pointer is used in c?