How do I send escape sequences to control a terminal or other device?
No Answer is Posted For this Question
Be the First to Post Answer
Which node is more powerful and can handle local information processing or graphics processing?
If I have a char * variable pointing to the name of a function ..
Differentiate between declaring a variable and defining a variable?
Do string constants represent numerical values?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
Explain Linker and Loader
What is an endless loop?
What does 3 periods mean in texting?
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
What is the difference between a free-standing and a hosted environment?