What does the && operator do in a program code?
No Answer is Posted For this Question
Be the First to Post Answer
What is the significance of an algorithm to C programming?
How to implement variable argument functions ?
why we are using semicolon at the end of printh statment
which one low Priority in c? a)=,b)++,c)==,d)+
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.
Explain what is a pragma?
What is the use of gets and puts?
Hi can anyone tell what is a start up code?
Why Modern OS are interrupt driven?Give an example
Is c# a good language?
how can i calculate mean,median,mode by using c program
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }