write a c program for swapping two strings using pointer
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is the purpose of the statement: strcat (S2, S1)?
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
What is the difference between abs() and fabs() functions?
What is gets() function?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
What is use of pointer?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
what is the use of bitfields & where do we use them?
What are register variables in c?