Is this program statement valid? INT = 10.50;
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between GETS();AND SCANF();
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What are operators in c?
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
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
what is ans for this scanf(%%d",c);
Give a fast way to multiply a number by 7
15 Answers Accenture, Aricent, Microsoft,
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
write a c program to convert fahrenheit to celsius?
Which is better between malloc and calloc?
What are runtime error?
State the difference between x3 and x[3].