how to create duplicate link list using C???
No Answer is Posted For this Question
Be the First to Post Answer
What is Conio.h ?
What is the difference between a free-standing and a hosted environment?
What is typedef struct in c?
What does extern mean in a function declaration?
Do you know pointer in c?
What are the 5 elements of structure?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
How can you determine the maximum value that a numeric variable can hold?
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
Tell us the use of fflush() function in c language?