will u please send me the placement papers to my
mail???????????????????
No Answer is Posted For this Question
Be the First to Post Answer
what is the basis for selection of arrays or pointers as data structure in a program
What are pointers in C? Give an example where to illustrate their significance.
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
What is const and volatile in c?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
What is volatile variable how do you declare it?
what is mallloc()?how it works?
print the palindrome numbers in between 0 to n
Describe explain how arrays can be passed to a user defined function
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
What are the similarities between c and c++?
Find occurence of a character in a sting.