What is c basic?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
Explain what is the general form of a c program?
#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?
is c language is a object oreinted language?
what is the function of pragma directive in c?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
Is exit(status) truly equivalent to returning the same status from main?
What is c language used for?
What are the benefits of c language?
What is the difference between a string and an array?
Write a c program to demonstrate character and string constants?
What is wrong in this statement?