Is c pass by value or reference?
No Answer is Posted For this Question
Be the First to Post Answer
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
What is a null string in c?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
hi how to convert program from notepad to turboc editor can u please help me
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
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
Which is an example of a structural homology?
hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STRUCTURES
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
How is a pointer variable declared?
What are the types of data files?
if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')