Please provide question papers of NATIONAL INFORMATICS
CENTRE for Scientific officer
No Answer is Posted For this Question
Be the First to Post Answer
What does the c in ctime mean?
What is the difference between static and global variables?
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
What should malloc() do?
Which one would you prefer - a macro or a function?
What are the advantages of the functions?
When is the “void” keyword used in a function?
What are function pointers? Provide an example.
How do you print only part of a string?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
Write a program with dynamically allocation of variable.