the maximum width of a c variable name can be
a) 6 characters
b) 8 characters
c) 10 characters
d) 20 characters
Answers were Sorted based on User's Feedback
what is diognisis?
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
Explain how do you declare an array that will hold more than 64kb of data?
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
write a 'c' program to sum the number of integer values
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
Why we write conio h in c?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Why pointers are used in c?
What is the use of f in c?
What is local and global variable in c?