What does printf does?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
c program to subtract between two numbers without using '-' sign and subtract function.
give one ip, find out which contry
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
What does d mean?
what are the interview question's in the language c
Why can arithmetic operations not be performed on void pointers?
Reverse a string word by word??
What is %lu in c?
How can a process change an environment variable in its caller?
What is the significance of an algorithm to C programming?
Why is the code below functioning. According to me it MUST NOT.