Explain the concept and use of type void.
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of type declarations?
When a c file is executed there are many files that are automatically opened what are they files?
Code for calculating square root without using library function, of math.h
write the program to find multiplication of 2-D matrix??????????
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What happens if you free a pointer twice?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
1. Write a program to reverse every second word in a given sentence.
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
Can one function call another?