What is unary operator?
No Answer is Posted For this Question
Be the First to Post Answer
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
Is null valid for pointers to functions?
WAP – represent a char in binary format
What are the types of data types and explain?
Is exit(status) truly equivalent to returning the same status from main?
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
What are called c variables?
Write a program to print fibonacci series without using recursion?
define switch statement?
What is the deal on sprintf_s return value?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
What are void pointers in c?