What is Full Form of C and Why We use C

Answer Posted / dsvkarthik

hai

Is This Answer Correct ?    0 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

find out largest elemant of diagonalmatrix

1643


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 ?????? */ }

1612


What does dm mean sexually?

806


Explain which function in c can be used to append a string to another string?

576


hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...

1435






What is null pointer constant?

589


Write a program to know whether the input number is an armstrong number.

660


What are the standard predefined macros?

627


Can 'this' pointer by used in the constructor?

608


What is the difference between ++a and a++?

686


what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)

1923


What are the types of functions in c?

565


in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.

7385


What is spark map function?

578


what are bit fields? What is the use of bit fields in a structure declaration?

1494