where does malloc() function get the memory?
What is a char in c?
Why is structure padding done in c?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
How can you find the day of the week given the date?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
How can you determine the size of an allocated portion of memory?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
why we use pointer in c
how to use enum datatype?Please explain me?
What is the purpose of sprintf() function?