What are the different file extensions involved when programming in C?
No Answer is Posted For this Question
Be the First to Post Answer
all c language question
What is a buffer in c?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
What is the difference between typedef and #define?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is C language Terminator?
What is context in c?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none