How many levels of pointers have?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to find whether the given number is prime or not?
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
How important is structure in life?
What is const keyword in c?
Explain the difference between malloc() and calloc() function?
Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer
How can I split up a string into whitespace-separated fields?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
write a program to find out prime number using sieve case?
code for selection sort?
List the difference between a While & Do While loops?
When should you not use a type cast?