Explain what does the function toupper() do?
No Answer is Posted For this Question
Be the First to Post Answer
How to convert decimal to binary in C using recursion??
What are the types of functions in c?
wat is the meaning of c?
Mention four important string handling functions in c languages .
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
what is diffrence between string and character array?
What is the maximum no. of arguments that can be given in a command line in C.?
Is printf a keyword?
Explain #pragma in C.
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
Tell us the use of fflush() function in c language?