Why header files are used?
No Answer is Posted For this Question
Be the First to Post Answer
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
What is dangling pointer in c?
What does struct node * mean?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
why effort estimation is important?
why do we use # in c-language?
how to find your architecture is LittleEndian or BigEndian?
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
Explain what is the difference between a string and an array?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply