Explain the importance and use of each component of this
string: Foo.Bar, Version=2.0.205.0, Culture=neutral,
PublicKeyToken=593777ae2d274679d
Answer / guest
xplain the importance and use of each component of this
string: Foo.Bar, Version=2.0.205.0, Culture=neutral,
PublicKeyToken=593777ae2d274679d
| Is This Answer Correct ? | 0 Yes | 6 No |
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
How many keywords are there in c?
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
What does the error message "DGROUP exceeds 64K" mean?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What is difference between structure and union in c programming?
pgm to find middle element of linklist(in efficent manner)
write a c programme for add of two numbers with out use of arthematic operators
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Why can't I perform arithmetic on a void* pointer?
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?