What are the different types of control structures in programming?
No Answer is Posted For this Question
Be the First to Post Answer
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
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
Write a program of advanced Fibonacci series.
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
what is ANSI and ISO
What is the size of a union variable?
what does exit() do?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
Why we write conio h in c?
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
What does void main return?
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39