Did c have any year 2000 problems?


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

Post New Answer

More C Interview Questions

What is the difference between array and pointer in c?

0 Answers  


Write a program to generate prime factors of a given integer?

2 Answers  


What is the purpose of 'register' keyword in c language?

0 Answers  


program to find the ASCII value of a number

8 Answers  


How are variables declared in c?

0 Answers  






What is structure pointer in c?

0 Answers  


what is a NULL pointer?

2 Answers  


How many levels of pointers can you have?

0 Answers  


What is the process to generate random numbers in c programming language?

0 Answers  


what is event driven software and what is procedural driven software?

0 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,


which of 'arrays' or 'pointers' are faster?

5 Answers  


Categories