int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}};

int *p=&a;

printf(ā€œ%dā€,*(*(x+1)+3));

Answer Posted / vijay r15

error

Bcoz there is no initialization for x

With thanks and regards
Vijay r15
raj.vijay55@gmail.com

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is size of union in c?

582


What is a constant and types of constants in c?

605


cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration

638


Explain the red-black trees?

610


What is use of integral promotions in c?

667






what is the different bitween abap and abap-hr?

1745


provide an example of the Group by clause, when would you use this clause

1710


What are the two types of functions in c?

567


what are the facialities provided by you after the selection of the student.

1661


Write a C program linear.c that creates a sequence of processes with a given length. By sequence it is meant that each created process has exactly one child. Let's look at some example outputs for the program. Here the entire process sequence consists of process 18181: Sara@dell:~/OSSS$ ./linear 1 Creating process sequence of length 1. 18181 begins the sequence. An example for a sequence of length three: Sara@dell:~/OSSS$ ./linear 3 Creating process sequence of length 3. 18233 begins the sequence. 18234 is child of 18233 18235 is child of 18234 ........ this is coad .... BUt i could not compleate it .....:( #include #include #include #include int main(int argc, char *argv[]) { int N; pid_t pid; int cont; if (argc != 2) { printf("Wrong number of command-line parameters!\n"); return 1; } N = atoi(argv[1]); printf("Creating process sequence of length %d.\n",N); printf("%d begins the sequence.\n",getpid()); /* What I have to do next ?????? */ }

1621


Differentiate abs() function from fabs() function.

598


What is meant by int main ()?

718


Can you define which header file to include at compile time?

590


What's the difference between constant char *p and char * constant p?

659


What is operator promotion?

630