Answer Posted / ravi pratap
actually c is the mother of programming language, which is mainly used for programing of various devices which are meant for structural programming.this basically includes procedure oriented pattern of pointers functions,arraysetc
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the maximum no. of arguments that can be given in a command line in C.?
What are structural members?
Why do we use int main?
What Is The Difference Between Null And Void Pointer?
please send me the code for multiplying sparse matrix using c
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
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
Explain what is the best way to comment out a section of code that contains comments?
How can I get random integers in a certain range?
How many types of errors are there in c language? Explain
Did c have any year 2000 problems?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is the purpose of sprintf() function?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
List the variables are used for writing doubly linked list program.