how to make program without <> in library.
Answer / gandhi priyank
hello
and your answer is a very easy you can write c progaram
then you can write libary #include<stdio.h> insted of
#include"stdio.h"
| Is This Answer Correct ? | 16 Yes | 3 No |
write a program to concatenation the string using switch case?
how to make program without <> in library.
Write a simple program to find the size of different basic data types in C.
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Are the expressions * ptr ++ and ++ * ptr same?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
Explain what is the difference between a string and an array?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
What is the difference between void main() and int main()?
How can I call a function, given its name as a string?
How is actual parameter different from the formal parameter?
What is a static function in c?