Write a program with dynamically allocation of variable.
marge linklist
What is equivalent to ++i+++j?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
How can I open a file so that other programs can update it at the same time?
Explain what are the different data types in c?
How do you write a program which produces its own source code as output?
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.
Explain union. What are its advantages?
How can I read/write structures from/to data files?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
What does calloc stand for?