Can you think of a logic behind the game minesweeper.
No Answer is Posted For this Question
Be the First to Post Answer
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
Explain what are the __date__ and __time__ preprocessor commands?
What is a stream in c programming?
What does static mean in c?
Is it acceptable to declare/define a variable in a c header?
Explain Function Pointer?
What functions are used for dynamic memory allocation in c language?
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
do ne body have any idea about the salary for the we r going to have interview. yup .. u got it right ..i m talking abt NIC.
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
Explain built-in function?