What is putchar() function?
No Answer is Posted For this Question
Be the First to Post Answer
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
Is c high or low level?
hi any body pls give me company name interview conduct "c" language only
What does the format %10.2 mean when included in a printf statement?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
write a program to print the one dimensional array.