how can i include my own .h file EX:- alex.h like
#include<alex.h>, rather than #include"alex.h"
what is the syallabus of computer science students in group- 1?
Explain that why C is procedural?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is hash table in c?
If null and 0 are equivalent as null pointer constants, which should I use?
Are pointers integers in c?
Why is c so powerful?
what are far pointers?
Does c have an equivalent to pascals with statement?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48