What is the correct code to have following output in c using nested for loop?
No Answer is Posted For this Question
Be the First to Post Answer
can we write a c program with out using main
What do you mean by dynamic memory allocation in c? What functions are used?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
What is the use of bit field?
Why isn't it being handled properly?
What is advantage of pointer in c?
What is call by value in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is c standard library?
Explain function pointer with exapmles.