Answer Posted / sony
i like to be well organised. I plan my time , effectively&
work well within it. I thrive under pressure & complete my
work within deadline. I m also a good team player . I
contribute well to the dynamic of the team , but work
equally as well as my own.
Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is uint8 in c?
What do you mean by invalid pointer arithmetic?
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 purpose of main( ) in c language?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is volatile c?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Are the expressions * ptr ++ and ++ * ptr same?
What is the hardest programming language?
What is the difference between formatted&unformatted i/o functions?
Where are some collections of useful code fragments and examples?
What is preprocessor with example?
Write a program which returns the first non repetitive character in the string?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)