Explain what is meant by high-order and low-order bytes?
No Answer is Posted For this Question
Be the First to Post Answer
Identify the operators that is not used with pointer a. && b. # c. * d. >>
What is gets() function?
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
Is c is a low level language?
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
List the difference between a 'copy constructor' and a 'assignment operator' in C?
how to make program without <> in library.
application attempts to perform an operation?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is derived datatype in c?