How do i store a paragraph into a string?
for example, if i input a long paragraph, the program will
read the words one by one and concatenate them until no word
is left.
What is your favorite subject?
1 Answers Ericsson, Invendis, Tech Mahindra,
What is pointer in c?
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
What is the value of uninitialized variable in c?
write an algorithm to display a square matrix.
What does it mean when a pointer is used in an if statement?
What is strcmp in c?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
Explain the concept of "dangling pointers" in C.
can any one provide me the notes of data structure for ignou cs-62 paper
how to print this pyramid * * * * * * * * * * * * *
what does ‘segmentation violation’ mean?