Is return a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to count the number of email on text
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
How can you allocate arrays or structures bigger than 64K?
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
What is the difference between memcpy and memmove?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
how many argument we can pas in in a function
Explain what is a pragma?
The file stdio.h, what does it contain?
Will Macros support multiple arguments ?
Explain high-order bytes.