What are void pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can you pass an array to a function by value?
program to find the magic square
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
How pointer is benefit for design a data structure algorithm?
the question is that what you have been doing all these periods (one year gap)
How does placing some code lines between the comment symbol help in debugging the code?
What is wild pointer in c?
How can I find out if there are characters available for reading?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
Which is better oop or procedural?