Can you think of a logic behind the game minesweeper.
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can you be sure that a program follows the ansi c standard?
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
where do we use volatile keyword?
Give a fast way to multiply a number by 7
15 Answers Accenture, Aricent, Microsoft,
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
largest Of three Number using without if condition?
if p is a string contained in a string?
Why is main function so important?
how memory store byte
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.