what is the mean of c languages.
Answer / s
c is nothing but a language consisting of small set of a
programming module like function , data type design to
perform a dedicated task.
| Is This Answer Correct ? | 6 Yes | 2 No |
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is auto keyword in c?
write a programme that inputs a number by user and gives its multiplication table.
YBJBU6
What does 3 mean in texting?
how to swap two nubers by using a function with pointers?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
what is the difference between strcpy() and memcpy() function?
Who developed c language?
What is the use of function in c?