What is meant by initialization and how we initialize a variable?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
how to find the kth smallest element in the given list of array elemnts.
Write a program to find the smallest and largest element in a given array in c language
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
write a function which accept two numbers from main() and interchange them using pointers?
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
what is the difference between 123 and 0123 in c?
What is meaning of tree