What is wrong with this program statement? void = 10;
By using C language input a date into it and if it is right?
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 can I read a binary data file properly?
what is diognisis?
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
Write a program to print fibonacci series using recursion?
What does s c mean in text?
swapping of two numbers without using third variable using AND and OR operators
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
How can I find out how much free space is available on disk?
What is meant by operator precedence?