Answer Posted / aaa
dell is one of the good organization of the call center.
this is developing a typing skill and communicating skill.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why is it that not all header files are declared in every C program?
How do you define structure?
What is a good data structure to use for storing lines of text?
What is a header file?
How do you determine the length of a string value that was stored in a variable?
Explain what is gets() function?
Is flag a keyword in c?
What is the difference between break and continue?
Explain what are multibyte characters?
Write a function that will take in a phone number and output all possible alphabetical combinations
Which is an example of a structural homology?
Do you know the use of 'auto' keyword?
What is an auto variable in c?
How do you sort filenames in a directory?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer