What is malloc and calloc?
c program to manipulate x=1+3+5+...+n using recursion
How many header files are in c?
Do you know what is the purpose of 'extern' keyword in a function declaration?
Are c and c++ the same?
main() { printf("hello%d",print("QUARK test?")); }
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
What are different types of variables in c?
WAP to convert text into its ASCII Code and also write a function to decode the text given?
What are the key features in c programming language?
how to use enum datatype?Please explain me?