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 22743Write 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 4669Write 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 122091.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
9 171801.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
3 11150what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
5 9794int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
15 24925
Do you know the use of 'auto' keyword?
i got 75% in all semester am i eligible for your company
What is a static variable in c?
What is an auto variable in c?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
How can I pad a string to a known length?
How can I find out if there are characters available for reading?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
how to construct a simulator keeping the logical boolean gates in c
How is a macro different from a function?
A set of N billiard balls are set on a one-dimensional table. The table is 1 meter long, set north-south with two pockets at either side. Each ball has zero width and there is no friction so it is moving with a fixed velocity of either northward or southward and bounces back in a perfect elastic collision from other balls it encounter on its way (or drop into one of the pockets). Your job is to keep track of the balls movements. Task Please write a program that gets the initial place, speed and direction of all the balls and gives the position of a specific ball after t seconds. Input The first line contains the number of scenarios. Each one of the other lines in the input contains a scenario: The first number, N, is the number of balls; followed by N pairs of numbers: the distance in centimeters from the south end of the table and the speed (positive speed meaning it moves northward); the last two numbers are the number i of the target ball you should track and the time T in seconds. Output The output is a single number for each line which is the place (distance in centimeters from the south end of the table) of the tracked ball after T seconds. Note: There is no new line character at the end of the result. Sample Input 5 1 50 1 1 1000 1 50 1 1 6 1 60 -2 1 6 2 10 1 95 -1 2 30 2 10 1 95 -1 2 60 Sample Output 100 56 48 65 70
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Is c procedural or object oriented?
Explain what are the different file extensions involved when programming in c?