What is mean by data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
Can i use Two or More Main Funtion in any C program.?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
Explain how do you use a pointer to a function?
How can I read/write structures from/to data files?
Who invented b language?
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
Explain what is the difference between a string and an array?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Explain how can you tell whether two strings are the same?
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?