What is malloc and calloc?
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
What is #include in c?
Who is invented by c?
main() { int i; printf("%d",i^i); }
change to postfix a/(b+c*d-e)
Write the control statements in C language
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
What is pointer to pointer in c?
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
Explain what is the stack?
Write a C program to perform some of the operation which can be performed using Single linked list