What is output redirection?
No Answer is Posted For this Question
Be the First to Post Answer
Program to trim a given character from a string.
What is sizeof in c?
Why do we use static in c?
How will you delete a node in DLL?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
how can we print hellow world programme without using semicolon
write a program whose output will be- 1 12 123 1234
Can we initialize extern variable in c?
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
What is a pragma?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }