ASCII stands for
Answer / hon prajakta
ASCII stands for American Standard Code for Information Interchange.
| Is This Answer Correct ? | 0 Yes | 0 No |
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
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
Not all reserved words are written in lowercase. TRUE or FALSE?
How can you return multiple values from a function?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
write an algorithm to display a square matrix.
Why C language is a procedural language?
what is the coding of display the factorial of a number using array and function?
What is the use of gets and puts?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
When should I declare a function?