Where static variables are stored in memory in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a Genralised LInked List?? Please give a detailed explation of it..
What are directives in c?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
Hi, main() { } Is a user defined function or Built in Functionn
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
Function calling procedures? and their differences? Why should one go for Call by Reference?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
discuss the steps needed to get a program from source code to executable in a system?
How to write a program to receive an integer & find its octal equivalent by using for loop?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
What is a lvalue
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?