what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / manju
In each iteration the equivalent ascii values of 0 to 1000
will print.
| Is This Answer Correct ? | 5 Yes | 8 No |
Post New Answer View All Answers
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
List the variables are used for writing doubly linked list program.
How can you allocate arrays or structures bigger than 64K?
Tell me is null always defined as 0(zero)?
What is d'n in c?
Is using exit() the same as using return?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
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
What is hashing in c language?
Which programming language is best for getting job 2020?
What is define directive?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What are the types of type specifiers?
What are the two types of functions in c?
What is the purpose of ftell?