how does the for loop work actually..suppose for the
following program how it ll work plz explain to me
for(i=5;i>=0;i--)
prinf(i--);
Answer Posted / aparna
both of the answers are wrong
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is a method in c?
What are the different categories of functions in c?
Difference between strcpy() and memcpy() function?
What do header files do?
Difference between goto, long jmp() and setjmp()?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
can any one tel me wt is the question pattern for NIC exam
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 the use of printf() and scanf() functions?
What is nested structure?
what is the difference between class and unio?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
In c language can we compile a program without main() function?
What is the use of structure padding in c?