Explain what is output redirection?
No Answer is Posted For this Question
Be the First to Post Answer
can we implement multi-threads in c.
find largest element in array w/o using sorting techniques.
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
How can a program be made to print the line number where an error occurs?
Describe dynamic data structure in c programming language?
Why can't we initialise member variable of a strucutre
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Write a program to print factorial of given number using recursion?
Explain two-dimensional array.
What is a class?