How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how do you list a file’s date and time?
what is the significance of static storage class specifier?
Why is sprintf unsafe?
what type of language is C?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
How can you increase the size of a statically allocated array?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
What is the difference between local variable and global variable in c?
find largest of 3 no
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?