How do you print an address?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between fork() and vfork()?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
how would a 4*3 array A[4][3] stored in Row Major Order?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
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
How was c created?
how to find the given number is prime or not?
What do you mean by team??
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
How to write the code of the program to swap two numbers with in one statement?
What are the different types of storage classes in C?
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?