where does malloc() function get the memory?
Do you know pointer in c?
Is main a keyword in c?
wat is the meaning of c?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
find out largest elemant of diagonalmatrix
How to write c functions that modify head pointer of a linked list?
how logic is used
Write the following function in C. 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.
How pointers are declared?
What are extern variables in c?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
Do you know the difference between exit() and _exit() function in c?