how to create duplicate link list using C???
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
What is Full Form of C and Why We use C
What are # preprocessor operator in c?
Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;
18 Answers Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,
What is an auto variable in c?
Can we include one C program into another C program if yes how?
What is the code for 3 questions and answer check in VisualBasic.Net?
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
What is hungarian notation? Is it worthwhile?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Why preprocessor should come before source code?