any C program contains only one function, it must be
a) void ()
b) main ()
c) message ()
d) abc ()
No Answer is Posted For this Question
Be the First to Post Answer
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
what is a function pointer and how all to declare ,define and implement it ???
When would you use a pointer to a function?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Does c have enums?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
What is sparse file?
Is javascript based on c?
Write a program to print factorial of given number using recursion?
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
where does malloc() function get the memory?