Why main is not a keyword in c?
Tell me with an example the self-referential structure?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
is it possible to change the default calling convention in c ?
What are the types of operators in c?
What is the use of keyword VOLATILE in C?
What is a wrapper function in c?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
What is the difference between %d and %i?
Do you know what is the purpose of 'extern' keyword in a function declaration?
Why is c called "mother" language?