What is the process of writing the null pointer?
No Answer is Posted For this Question
Be the First to Post Answer
write function to reverse char array ... without using second array
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
write a c programme for add of two numbers with out use of arthematic operators
write a program to generate address labels using structures?
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
What are data structures in c and how to use them?
How do you write a program which produces its own source code as output?
Is it possible to create recycle bin in mobiles?
Can true be a variable name in c?
What is c mainly used for?
what is printf
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?