what is ans for this
scanf(%%d",c);
What are comments and how do you insert it in a C program?
What is pragma in c?
Why main is not a keyword in c?
What is the usage of the pointer in c?
What is the default value of local and global variables in c?
What is the difference between mpi and openmp?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
How can I copy just a portion of a string?
Why can’t we compare structures?
Write a C program to convert an integer into a binary string?
what is bitwise operator?
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.