What is the difference between variable declaration and variable definition in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to print infinte number
Lists the benefits of c programming language?
Is void a keyword in c?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
How can I convert integers to binary or hexadecimal?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
What is function prototype?
what is an inline function?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
What is the use of sizeof?