How do I get a null pointer in my programs?
Are there any problems with performing mathematical operations on different variable types?
Explain how do you determine whether to use a stream function or a low-level function?
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
What are integer variable, floating-point variable and character variable?
What is meant by keywords in c?
Which is best book for data structures in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Describe how arrays can be passed to a user defined function
#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.
What is the purpose of the statement: strcat (S2, S1)?