Meaning of () in c
Answer / shrikantauti
it means function.
it may be user defined or system defined.
| Is This Answer Correct ? | 6 Yes | 0 No |
plssssss help !!....using array.. turbo c.. create a program that will accept number of words to be consored. .a word must not exceed 10 characters long .the text to be entered will be no longer than 200 characters .there will be no 10 words example: enter number of words to be censor: 5 enter words to censor: windows office microsoft bill gates enter text to censor: bill gates founded microsoft and makes office and windows sample output: <consored> <censored> founded <censored> and makes <censored> and <censored>
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
Explain the difference between call by value and call by reference in c language?
What is pointer to pointer in c language?
Is main is user defined function?
What is string function in c?
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
C program to find all possible outcomes of a dice?
What is #define in c?
how to write a prog in c to convert decimal number into binary by using recursen function,