what do the 'c' and 'v' in argc and argv stand for?
No Answer is Posted For this Question
Be the First to Post Answer
How can I list all of the predefined identifiers?
What are macros in C?
Create a simple code fragment that will swap the values of two variables num1 and num2.
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
What are data breakpoints?
How can I call a function, given its name as a string?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
a simple program in c language
What are header files why are they important?
What is class and object in c?
const char * char * const What is the differnce between the above tow?.
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.