What is return type in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how do you search data in a data file using random access method?
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
Explain about the constants which help in debugging?
When should volatile modifier be used?
5. 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 an identifier?
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
What is meant by initialization and how we initialize a variable?
how to impliment 2 or more stacks in a single dimensional array ?
how to build a exercise findig min number of e heap with list imlemented?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }