What are the properties of union in c?
No Answer is Posted For this Question
Be the First to Post Answer
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
How many identifiers are there in c?
Explain what is the difference between #include and #include 'file' ?
Why enum is used in c?
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
Why header file is used in c?
What happens if a header file is included twice?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Explain how can I prevent another program from modifying part of a file that I am modifying?