What is mean by data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
What is the diffrent between while and do while statement ?
What are extern variables in c?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
What is dynamic memory allocation?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
whats the use of header file in c?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
can we print any string without using terminator?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
What are pointers in C?