What is calloc() function?
No Answer is Posted For this Question
Be the First to Post Answer
Is a pointer a kind of array?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
List some of the static data structures in C?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
How many main () function we can have in a project?
Why do we use namespace feature?
What is structure padding & expalain wid example what is bit wise structure?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
what is the difference between getch() and getchar()?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1