Answer Posted / maddy
i am very good hardworker i can work for a company at any
situation so ican put my maximum effort to work in ur
company
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Why do we use main function?
Is printf a keyword?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What's the difference between constant char *p and char * constant p?
Describe the difference between = and == symbols in c programming?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Is anything faster than c?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
How many main () function we can have in a project?
Why doesnt that code work?
Explain what are linked list?
What is the purpose of 'register' keyword in c language?
What are the types of pointers in c?
Explain what is the benefit of using an enum rather than a #define constant?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer