What is the difference between memcpy and memmove?
No Answer is Posted For this Question
Be the First to Post Answer
Write programs for String Reversal & Palindrome check
Can we compile a program without main() function?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
code for inverse a matrix
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What are the different types of control structures in programming?
write an algorithm and a program to count the number of elements in a circularly singly linked list
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Why static is used in c?
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
Why c is called object oriented language?