A collection of data with a given structure for excepting storing and providing on demand data for multiple users
a) linked list
b) datastructer
c) database
d) preprocessor
No Answer is Posted For this Question
Be the First to Post Answer
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
How pointer is different from array?
How can you read a directory in a C program?
Explain the term printf() and scanf() used in c language?
Does c have class?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
what is stack , heap ,code segment,and data segment
How can you pass an array to a function by value?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }