What is a shell structure examples?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between local variable and global variable in c?
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
What are called c variables?
What is the total generic pointer type?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
what is a static function
plz answer.. a program that takes a string e.g. "345" and returns integer 345
What is the function of multilevel pointer in c?
Does c have circular shift operators?
main() { float a=3.2e40; printf("%d",a); }