How to write a code for reverse of string without using
string functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of the statement: strcat (S2, S1)?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
Why is this loop always executing once?
What is cohesion and coupling in c?
Explain how can I manipulate strings of multibyte characters?
What are terms in math?
#define d 10+10 main() { printf("%d",d*d); }
How can I generate floating-point random numbers?
totally how much header files r in c language
what is the mean of c languages.
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..