Explain enumerated types in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
what does ‘#include’ mean?
printf("%d",(printf("Hello")); What it returns?
What is the use of putchar function?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 Answers Microsoft, Motorola,
Explain how can I right-justify a string?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
What are valid signatures for the Main function?