Sir i want e-notes of C languge of BAlaguruswami book i.e scanned or pdf file of balaguruswamy book on c language.PLEASE SEND ME on my mail id ajit_kolhe@rediff.com
8 22728Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
1 4666Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
IBM,
6 122071.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
9 171721.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
3 11144what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
5 9782int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
15 24910
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What are pointers? What are stacks and queues?
What are actual arguments?
What do you mean by recursion in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
explain what is an endless loop?
Apart from dennis ritchie who the other person who contributed in design of c language.
Why c is procedure oriented?
What is the difference between volatile and const volatile?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is far pointer in c?
How do you list files in a directory?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is an auto variable in c?