What is ponter?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How do you convert strings to numbers in C?

0 Answers  


What is the difference between single charater constant and string constant?

0 Answers  


Not all reserved words are written in lowercase. TRUE or FALSE?

0 Answers  


What is an endless loop?

0 Answers  


What are local static variables? How can you use them?

0 Answers  






In C programming, how do you insert quote characters (‘ and “) into the output screen?

0 Answers  


Explain what’s a signal? Explain what do I use signals for?

0 Answers  


List the difference between a While & Do While loops?

0 Answers   Accenture,


What are compound statements?

0 Answers  


What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these

2 Answers   Oracle,


Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }

1 Answers  


Write a function to find the area of a triangle whose length of three sides is given

2 Answers  


Categories