How can I invoke another program or command and trap its output?
No Answer is Posted For this Question
Be the First to Post Answer
to get a line of text and count the number of vowels in it
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What are different types of pointers?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
writw a program to insert an element in the begning of a doubly linked list
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation
What is the use of keyword VOLATILE in C?
Who invented bcpl language?
swap 2 numbers without using third variable?
difference between c and c++?