How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Is an array parameter is always "by reference" ?
why integer range between -327680to+32767
What are the __date__ and __time__ preprocessor commands?
what is the format specifier for printing a pointer value?
what do you mean by defining a variable in our c code?
Why does the call char scanf work?
What is an array? What the different types of arrays in c?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What is the explanation for cyclic nature of data types in c?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?