Why static variable is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is huge pointer in c?
What is the difference between null pointer and the void pointer?
What is the purpose of scanf() and printf() functions?
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,………….].
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
What is character set?
What is wrong with this statement? Myname = 'robin';
What is the difference between int main and void main in c?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
what is the function of pragma directive in c?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
Calculate 1*2*3*____*n using recursive function??