How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
No Answer is Posted For this Question
Be the First to Post Answer
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
what are bps & baud rates? differentiate these two?
What is default value of global variable in c?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
What is a method in c?
explain memory layout of a C program
What's the difference between a linked list and an array?
What is exit() function?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?