What is a char in c?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me can the size of an array be declared at runtime?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
how to swap two integers 1 and 32767 without using third variable
is it possible to create your own header files?
what is the coding of display the factorial of a number using array and function?
List some applications of c programming language?
What is getch c?
Write a program to generate random numbers 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.
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?