Why do we use stdio h and conio h?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output for the following main() { printf("hi" "hello"); }
write a program for fibonaci series by using while loop in c?
What is the purpose of macro in C language?
Can u return two values using return keyword? If yes, how? If no, why?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
what do u mean by Direct access files? then can u explain about Direct Access Files?
Apart from dennis ritchie who the other person who contributed in design of c language.
Explain the difference between fopen() and freopen().
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
Explain the term printf() and scanf() used in c language?
Mention four important string handling functions in c languages .
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.