Is c weakly typed?
No Answer is Posted For this Question
Be the First to Post Answer
totally how much header files r in c language
How does the assert() function work?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
out put of printf(ā%dā,printf(ram));
Explain the advantages and disadvantages of macros.
what does exit() do?
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
What are the 4 types of unions?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
Write a program of prime number using recursion.
What is period operator in c?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?