When should a type cast not be used?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
What are the header files used in c language?
How is = symbol different from == symbol in c programming?
how to create c progarm without void main()?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
Method Overloading exist in c ?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
What are the salient features of c languages?
What is the difference between NULL and NUL?
How does pointer work in c?