What is null pointer constant?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
How to print "I Love My India" without using semi colon?
What is the use of bitwise operator?
Explain c preprocessor?
What is scanf () in c?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
How does pointer work in c?
an algorithem for the implementation of circular doubly linked list
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
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