What is the newline escape sequence?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to copy a string without using a string?
What is structure in c language?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
What are the 4 data types?
What is the use of structure padding in c?
why you will give me a job in TCS.
Why c is a mother language?
Is a house a shell structure?
where can function pointers be used?
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
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
Does * p ++ increment p or what it points to?