Explain data types & how many data types supported by c?
No Answer is Posted For this Question
Be the First to Post Answer
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
Explain low-order bytes.
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
How do you do dynamic memory allocation in C applications?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
What is nested structure?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?