Mention four important string handling functions in c languages .
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of printf("%d",(scanf("%d",10));
How can I invoke another program or command and trap its output?
praagnovation
How many header files are in c?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
what are the advantages of a macro over a function?
how to execute a program using if else condition and the output should enter number and the number is odd only...
What is register variable in c language?
what are two categories of clint-server application development ?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
how to build a exercise findig min number of e heap with list imlemented?