Explain how do you view the path?


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

Post New Answer

More C Interview Questions

What was noalias and what ever happened to it?

0 Answers  


What does c mean before a date?

0 Answers  


main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }

5 Answers   Vector, Vector Solutions,


Can you write a programmer for FACTORIAL using recursion?

0 Answers   ADP,


How many types of sorting are there in c?

0 Answers  






What is a nested loop?

0 Answers  


Is main an identifier in c?

0 Answers  


write function to reverse char array ... without using second array

3 Answers  


When can a far pointer be used?

0 Answers  


Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.

1 Answers  


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


Why is %d used in c?

0 Answers  


Categories