What does static variable mean in c?
No Answer is Posted For this Question
Be the First to Post Answer
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
Total of how many functions are available in c?
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
Why is it important to memset a variable, immediately after allocating memory to it ?
program for swapping two strings by using pointers in c language
What is meant by 'bit masking'?
What does calloc stand for?
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Linked lists -- can you tell me how to check whether a linked list is circular?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….