What is c basic?


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

Post New Answer

More C Interview Questions

what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }

4 Answers  


Explain what is the general form of a c program?

0 Answers  


#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?

7 Answers   Intel,


is c language is a object oreinted language?

5 Answers   TCS,


what is the function of pragma directive in c?

0 Answers  


extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }

2 Answers  


Is exit(status) truly equivalent to returning the same status from main?

0 Answers  


What is c language used for?

0 Answers  


What are the benefits of c language?

0 Answers  


What is the difference between a string and an array?

0 Answers  


Write a c program to demonstrate character and string constants?

0 Answers  


What is wrong in this statement?

0 Answers  


Categories