program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
2096pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
4 10713pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
2343pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
2 13422pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
2646pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
2 16469Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
1 8245Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.
3 16964Write an interactive c program that will encode or decode a line of text. To encode a line of text, proceed as follows: Convert each character, including blank spaces, to its ASCII equivalent. Generate a positive random integer. Add this integer to the ASCII equivalent of each character. The same random integer will be used for the entire line of text. Suppose that N1 represents the lowest permissible value in the ASCII code, and N2 represents the highest permissible value. If the number obtained in step 2 above exceeds N2, then subtract the largest possible multiple of N2 from this number, and add the remainder to N1. Hence the encoded number will always fall between N1 and N2, and will therefore always represent some ASCII character. Display the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text. Be certain, however, that the same random number is used in decoding as was used in encoding.
1 12983
How many keywords are there in c?
What 'lex' does?
What is the size of array float a(10)?
How can you draw circles in C?
What is the difference between declaring a variable and defining a variable?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What are the applications of c language?
Differentiate between a for loop and a while loop? What are it uses?
How can I write functions that take a variable number of arguments?
Which is better between malloc and calloc?
What is sizeof return in c?
What is the total generic pointer type?
Why header files are used?
What is a macro, and explain how do you use it?
What are the advantages and disadvantages of c language?