How do you construct an increment statement or decrement statement in C?
No Answer is Posted For this Question
Be the First to Post Answer
What are pointers? Why are they used?
Explain what are global variables and explain how do you declare them?
What does dm mean sexually?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Write a C program that reads a series of strings and prints only those ending in "ed"
What is c token?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
c program to subtract between two numbers without using '-' sign and subtract function.
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
how we can make 3d venturing graphics on outer interface
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.