What is a protocol in c?
No Answer is Posted For this Question
Be the First to Post Answer
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;..}
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is conio h in c?
What is static identifier?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
who is first prime minister in india??
can we implement multi-threads in c.
What is memcpy() function?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
What is 2c dna?
find largest element in array w/o using sorting techniques.
What is ## preprocessor operator in c?