What is file in c language?
Process by which one bit pattern in to another by bit wise operation is?
can anyone suggest some site name..where i can get some good data structure puzzles???
How the c program is executed?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
program to convert a integer to string in c language'
Explain what is the difference between a string and an array?
Explain union.
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
sum of two integers values only other then integer it should print invalid input.
Example of friendly function in c++
Why string is used in c?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.