Explain about the functions strcat() and strcmp()?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
Why does the call char scanf work?
What is function pointer and where we will use it
What is context in c?
What are high level languages like C and FORTRAN also known as?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
What is hashing in c?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
what are # pragma staments?
Explain how can type-insensitive macros be created?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
give an example of type casting by a simple c program