What is a volatile keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does *p++ do?
What is a ternary operator in c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What are reserved words?
what is data structure
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
what is the format specifier for printing a pointer value?
what do you mean by inline function in C?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
Explain how are portions of a program disabled in demo versions?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output