What do you mean by command line argument?
No Answer is Posted For this Question
Be the First to Post Answer
What is logical error?
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
Bit swapping
What is the hardest programming language?
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is the difference between arrays and pointers?
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }