What is 1d array in c?
No Answer is Posted For this Question
Be the First to Post Answer
When is a “switch” statement preferable over an “if” statement?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
Can a variable be both const and volatile?
find largest element in array w/o using sorting techniques.
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
how we can say java is platform independent, while we require JVM for that particular Operating System?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
write an algorithm and a program to count the number of elements in a circularly singly linked list
In which category does main function belong??
Why is extern used in c?