#include
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
1 3623how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
3322Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
5 19790Explain this code.
#include
IBM,
3 5133
Can a program have two main functions?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Differentiate between a for loop and a while loop? What are it uses?
How many types of sorting are there in c?
What is variables in c?
What is "Duff's Device"?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What are pointers? Why are they used?
How can a program be made to print the line number where an error occurs?
Where we use clrscr in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What math functions are available for integers? For floating point?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?