What is the size of a union variable?
No Answer is Posted For this Question
Be the First to Post Answer
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
What are logical errors and how does it differ from syntax errors?
What is the deal on sprintf_s return value?
How to print "Hi World" without using semi colon?
void main() { int a=1; while(a++<=1) while(a++<=2); }
What is the meaning of int *x[]();?
Explain what does a function declared as pascal do differently?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
Implement bit Array in C.
What is #include stdio h?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y